Data type conversion from Access to SQL Server errors -


i have sql server odbc access being utilized front end. created column in sql bit data type , created checkbox yes/no data type uses sql column control source. when go form , try change in there , update tables, writing error , wont let me append updates i'm trying make. delete bit data type, , check box, able again append information form. know solution or way utilize boolean check boxes report sql database track progress of order, still able append records? if knows why happening appreciate information own notes , understanding.

this image shows column created in sql server

enter image description here

this image shows looks in odbc table in access

enter image description here

this image shows control source picked query utilizes names of form comboboxes, text boxes, , check boxes

enter image description here

this image shows happens after try update , and close

enter image description here

thanks

haven't done long time, problem related numbers stored. yes/no in access = -1/0, in sqlsrvr = 1/0 (or similar). use int field in sqlsrvr store whatever access sends (-1 or 0), or keep bit don't use yes/no in access - create custom yes/no table yes=1 , no=0 (or whatever bit needs) , use custom table lookup table field which, when updated send appropriate value. hope that's relevant , makes sense.


Comments

Popular posts from this blog

node.js - Mongoose: Cast to ObjectId failed for value on newly created object after setting the value -

[C++][SFML 2.2] Strange Performance Issues - Moving Mouse Lowers CPU Usage -

ios - Possible to get UIButton sizeThatFits to work? -