G
ghetto_banjo
Here is my SQL string:
strNoteSQL = "INSERT INTO tblNotes (ClaimID, Note, NoteDATE) VALUES ("
& intClaim & ", '" & strNote & "', '" & dteCurrentDate & "'); "
ClaimID is integer, Note is text, NoteDate is date/time
There is also a NoteID field in tblNotes which is primary key. I am
excluding this because it is an autonumber.
I get the "syntax error in INSERT-INTO Statement" error.
Any ideas?
strNoteSQL = "INSERT INTO tblNotes (ClaimID, Note, NoteDATE) VALUES ("
& intClaim & ", '" & strNote & "', '" & dteCurrentDate & "'); "
ClaimID is integer, Note is text, NoteDate is date/time
There is also a NoteID field in tblNotes which is primary key. I am
excluding this because it is an autonumber.
I get the "syntax error in INSERT-INTO Statement" error.
Any ideas?