Firstly Sql Server requires single quotes to delimit text. Example:
VALUES ( " & apascidbox.Text & ",
needs to be:
VALUES ( '" & apascidbox.Text & "',
see you need to concatenate a single quote just before the closing double quote and just after the next openeing double-quote, do same for all text fields in the SQL string.
Also what is the data type in the SQL Table for your measurement fields ? is it bit? I'm not sure if ADO/SQL is able to implicitly convert boolean true/false to a bit 0/1.
Last edited by hollystyles; Jul 16th, 2006 at 4:37 pm.
Reputation Points: 262
Solved Threads: 68
Veteran Poster
Offline 1,181 posts
since Feb 2005