penfold1992
Registered User.
- Local time
- Today, 23:06
- Joined
- Nov 22, 2012
- Messages
- 169
Hi, first off, i dont know much about SQL so I wont be able to help that much however...
I have a simple command
so this says "If something is in the box, record it as a text) however there are errors when you add the symbol " ' " to the fields, they start to cause errors.
ive had a look at the answer that is... "Parameter queries" or "Parameter Queries" however I am not sure how to use them properly.
another issue is that I am using DAO as my database which I think is causing the problem.
could someone tell me how I should be using them to replace the simple method I was using before? I am using DAO 3.6
I have a simple command
Code:
If (IsNull(strRequester.Value) = False) And (strRequester <> "") Then
strRequester2 = strRequester.Value
Else
If InsertFlag <> False Then
MsgBox ("Requester details can not be blank.")
InsertFlag = False
End If
End If
so this says "If something is in the box, record it as a text) however there are errors when you add the symbol " ' " to the fields, they start to cause errors.
ive had a look at the answer that is... "Parameter queries" or "Parameter Queries" however I am not sure how to use them properly.
another issue is that I am using DAO as my database which I think is causing the problem.
could someone tell me how I should be using them to replace the simple method I was using before? I am using DAO 3.6