J
Jonathan Wood
The further I delve into .NET and ADO.NET, the more things I seem to find
missing that we had 10 or 15 years ago. I really don't understand why.
So, using VS to create an SQL database I see:
1. There is no Boolean data type. Further, if I use tinyint and set it's
default value to 0, I see that it defaults to NULL, which causes an error if
I don't set it before I try to save a new record.
2. There is a money type, but it appears that is just an alias for decimal
or something. Once data is entered, it is automatically formatted something
like "39.9500".
Can anyone tell me how they are dealing with these limitations?
Thanks.
missing that we had 10 or 15 years ago. I really don't understand why.
So, using VS to create an SQL database I see:
1. There is no Boolean data type. Further, if I use tinyint and set it's
default value to 0, I see that it defaults to NULL, which causes an error if
I don't set it before I try to save a new record.
2. There is a money type, but it appears that is just an alias for decimal
or something. Once data is entered, it is automatically formatted something
like "39.9500".
Can anyone tell me how they are dealing with these limitations?
Thanks.