Hi
Using the old style of inserting data in a table
str="Insert Into MyTable (Description, Test) Values (
'The Quick, Black Jump's, Over The Lazy Dog', 'Test'
)";
The above would fail since there are commas and single quote in the data.
I thought fill(ing) a Dataset and the using update would overcome the
problem, but it also has the same error, how does one solve such issues.
TIA
Barry