U
uGek
quick question, I am trying to run an sql query through a module against one
my access tables with a string variable that changes while my app is running.
here is my query.
strSql = "SELECT * FROM tblSettings WHERE (((tblSettings.fldCorpID)=" &
strUID & "))" ------- it is not working -----
I have usually in the past ran queries with numbers instead of strings and I
have never had this problem through sql but this time I have tried everything
I could think of to make it run but it is not working!! can anyone help me...
usually the query that does work looks like this
strSql = "select * from table where flddate =" & inttbldate1
but like I said it is different because what I am querying is numbers
instead of a string.
my access tables with a string variable that changes while my app is running.
here is my query.
strSql = "SELECT * FROM tblSettings WHERE (((tblSettings.fldCorpID)=" &
strUID & "))" ------- it is not working -----
I have usually in the past ran queries with numbers instead of strings and I
have never had this problem through sql but this time I have tried everything
I could think of to make it run but it is not working!! can anyone help me...
usually the query that does work looks like this
strSql = "select * from table where flddate =" & inttbldate1
but like I said it is different because what I am querying is numbers
instead of a string.