AngelsGuardian
Registered User.
- Local time
- Today, 10:05
- Joined
- Jan 23, 2005
- Messages
- 42
Ok here is the deal
if my line is like :
And that in the memo i have a (') character it create an error
if my line is like :
And that in the memo i have a (") character it create an error
if my line is like :
And that in the memo i have a (') or (") its all fine but it seem i cant input more then about 512 character
Anyone know what to do with that particular probleme ?
if my line is like :
Code:
DoCmd.RunSQL ("INSERT INTO Table1 (fldtest) VALUES ('" & [fldMemo] & "');")
if my line is like :
Code:
DoCmd.RunSQL ("INSERT INTO Table1 (fldtest) VALUES (""" & [fldMemo] & """);")
if my line is like :
Code:
DoCmd.RunSQL ("INSERT INTO Table1 (fldtest) VALUES ([fldMemo]);")
Anyone know what to do with that particular probleme ?