mickmullen
Registered User.
- Local time
- Today, 10:29
- Joined
- Oct 30, 2018
- Messages
- 19
Couple questions.
When a Dim is defined as String (Dim strCriteria As String)
and then I want to use the String in a SQL statement
What does the Quotation and ampersand mean here:
" & strCriteria & "
Context: WHERE ((" & strCriteria & ") AND(" & strCriteria2 & ")
When a Dim is defined as String (Dim strCriteria As String)
and then I want to use the String in a SQL statement
What does the Quotation and ampersand mean here:
" & strCriteria & "
Context: WHERE ((" & strCriteria & ") AND(" & strCriteria2 & ")