Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Insert FRom VFP to SQL
Message
General information
Forum:
Visual FoxPro
Category:
Client/server
Title:
Insert FRom VFP to SQL
Miscellaneous
Thread ID:
00127638
Message ID:
00127638
Views:
65
The Followong is my code to insert a new record into a Stock Table of a SQL Server database from a standard VFP Table.

nc=SQLCONNECT('winpos',"sa","")
select stock
cSQL = "Insert INTO STOCK ( "+;
"CISBN, "+;
"CBARCODE, "+;
"CPRODCODE,"+ ;
"CPRODNAME)"+;
"Values ("+;
"'"+Allt(STOCK.CISBN)+"', "+; "'"+Allt(STOCK.CBARCODE)+"', "+;
"'"+AlltSTOCK.CPRODCODE)+"', "+;
"'"+Allt(STOCK.CPRODNAME)+"')"
sqlexec(nc,cSQL)

This code Works Fine as Long as there is no Single Quotation Marks in any Field ie '

Does any body have a solution of how to solve this problem. I cannot get rid of any quotation marks in the fields. There are authors names Like O'Donnel etc
Fred Besterwitch, MCP

The harder you work. The luckier you get.
Next
Reply
Map
View

Click here to load this message in the networking platform