I have created a small table in SQL Server CE 3.5
Following is the table description:
ROW_ID NVARCHAR(30),
NAME NVARCHAR(30),
TEST BIT
I am using following query to insert record in the table:
insert into EMP(ROW_ID, NAME, TEST)
values('123', 'XYZ', TRUE);
But I am getting a strange error:
Error Message: The column name is not valid. [Node Name (if any) = ,Column name = TRUE]
Please help me with this.
Thanks in advance.