Hello All,
I keep getting an "invalid qualifier" error while trying to execute the following SQL statement from a form.
Bold text represents where the error occurs. The syntax appears to be ok but, it fails during compiling.
Any suggestions or insight would be helpful,
Bender
I keep getting an "invalid qualifier" error while trying to execute the following SQL statement from a form.
Code:
strSQL="Insert into TableA ( data1, data2, data3 ) values(@" & txt1 & "@,@" & txt2 & "@,@" & txt3 & "@);" strSQL=replace(strSQL,"@", chr(34)) currentdb.execute [B]strSQL[/B], dbfailonerror
Any suggestions or insight would be helpful,
Bender
Comment