How do you insert a bit field into a SQL Server database. Shouldn't I be able to use a boolean variable passing it to the stored procedure, and it should convert it...right?
Printable View
How do you insert a bit field into a SQL Server database. Shouldn't I be able to use a boolean variable passing it to the stored procedure, and it should convert it...right?
The bit field takes a 1 or 0 as the value, but returns a True or False.
Thanks, that was what I was thinking. I actually found out that the table I was inserting on had a trigger that disallowed the insert, so it probably wasn't anything I was doing.