Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SQL Passthru
Message
From
09/11/2002 10:52:23
James Blackburn
Qualty Design Systems, Inc.
Kuna, Idaho, United States
 
General information
Forum:
Visual FoxPro
Category:
Client/server
Title:
Miscellaneous
Thread ID:
00719981
Message ID:
00720635
Views:
22
Troy

I am getting into this thread late but I did not see the answerer here. You need to add another single quote to the exiting one. SQL Server will strip out the extra and it knows not to end the string. In my framework, I always run all variables through a function that adds a ' to any existing '.
lcMyVar = strtran(lcMyVar,"'","''")
>Thanks, I normally use that technique, but in this case some of the fields may contain single quotes within themselves and I can't strip them out because another application that uses this data relies on them. Also, some of the fields are memos and could be quite long.
>
>I also tried the technique of making a cursor updatable, but many of the fields do not update for some reason.
>
>>>>sqlexec(iCH, "insert into table (field1,field2) values (?oRec.field1, ?oRec.Field2)")
>>
>>You are sending a string to SQL Server that includes references to an object that exists only in your application. Try:
>>
>>
>>cSql = "Insert into table(field1, fields2) values ("
>>cSql = cSql + "'" + oRec.Field1 + "', "  && Field 1 contains a string, needs single quotes
>>cSql = cSql + STR(oRec.Field2,5,0) + ")"  && Field 2 contains a number, but we are creating a string here
>>SQLEXEC(iCH,cSql)
>>
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform