B
Bill Gower
I want to store an SQL string into a table and then be able to run it later.
Here is the insert command
"insert into ProjectSQL(ProjectID, SQLID, SQLString) values( " &
locProjectID & ", " & nID & ", '" & tSQL & "')" that I will use inside of VB
The problem is that inside the string tSQL are single quoted values so I
need double quotes around the tSQL when it is stored in the table.
What do I need to do to achieve this?
Bill
Here is the insert command
"insert into ProjectSQL(ProjectID, SQLID, SQLString) values( " &
locProjectID & ", " & nID & ", '" & tSQL & "')" that I will use inside of VB
The problem is that inside the string tSQL are single quoted values so I
need double quotes around the tSQL when it is stored in the table.
What do I need to do to achieve this?
Bill