I'm using SQL server and I want to run a simple query... well it's not so simple... but a simple version can suffice to answer my question...
Namely, I want..
INSERT INTO blah (somecolumn) VALUES ('john's boat')
I somehow need to escape that internal ', but can't figure it out... I'm fairly certain it's positive because if I just open the table and modify values I get no objections... / doesn't seem to work, nor does // or \\ or any such combo of those... nor does "john's boat"... and those are all the tricks I have up my sleeve... anyone have the answer?
-Rob
Namely, I want..
INSERT INTO blah (somecolumn) VALUES ('john's boat')
I somehow need to escape that internal ', but can't figure it out... I'm fairly certain it's positive because if I just open the table and modify values I get no objections... / doesn't seem to work, nor does // or \\ or any such combo of those... nor does "john's boat"... and those are all the tricks I have up my sleeve... anyone have the answer?
-Rob