Hi,
I receive an error when I try to store a checkbox value
to my MS-SQL Database Yes/No Field.
I assign the field with the following code:
row["INT_Height"] = txtHeight.Text;
row["BOL_Jump"] = chkJump.Checked;
...
dataAdapter.Update(ds, "tbl_Root_Characters"
I get the error:
ERROR: Syntaxerror converting varchar value 'True' to a row of type bit
can anybody help
thx
Frank
I receive an error when I try to store a checkbox value
to my MS-SQL Database Yes/No Field.
I assign the field with the following code:
row["INT_Height"] = txtHeight.Text;
row["BOL_Jump"] = chkJump.Checked;
...
dataAdapter.Update(ds, "tbl_Root_Characters"
I get the error:
ERROR: Syntaxerror converting varchar value 'True' to a row of type bit
can anybody help
thx
Frank