Aloha people.
At the moment, I am having a problem with SQL 2005. I have just imported a massive >1GB MSAccess database (of all things) to SQL, and it went smoothely. Only one thing, it converted Yes/No (bool fields) to bits; Which is totally correct.
The underlying application, all 120000 lines of code of it, uses queries like:
select * from icecream where melted=False
...
Problem is:
SQL wants it like this:
...
select * from icecream where melted='False'
... or ...
select * from icecream where melted=0
Anybody know how I can get about that, without having to traul through all this code?
Cheers
Adridude
At the moment, I am having a problem with SQL 2005. I have just imported a massive >1GB MSAccess database (of all things) to SQL, and it went smoothely. Only one thing, it converted Yes/No (bool fields) to bits; Which is totally correct.
The underlying application, all 120000 lines of code of it, uses queries like:
select * from icecream where melted=False
...
Problem is:
SQL wants it like this:
...
select * from icecream where melted='False'
... or ...
select * from icecream where melted=0
Anybody know how I can get about that, without having to traul through all this code?
Cheers
Adridude