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
this image shows looks in odbc table in access
this image shows control source picked query utilizes names of form comboboxes, text boxes, , check boxes
this image shows happens after try update , and close
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
Post a Comment