Last Updated on Thursday, 27 December 2012
In view of the fact that this error pops up in so many systems I take over, I have often gone down the wrong path following the red herring as it were when in fact the answer to this is very common.
Why?
Bespoke systems are the usual suspects. Developers will have told the system what to do when newline, carriage returns and tab characters are entered in the data. Those who are security-conscious will also make their system escape apostrophes (') and double-quotes ("). But who can honestly build a system that thinks of everything from day one?
How?
Check all required values to escape have been escaped. In all my cases this has been the percent sign (%) but I'm listing what needs to be escaped in SQL for future use:
| Character | Description |
|---|---|
| \0 | An ASCII NUL (0x00) character. |
| \' | A single quote (“'”) character. |
| \" | A double quote (“"”) character. |
| \b | A backspace character. |
| \n | A newline (linefeed) character. |
| \r | A carriage return character. |
| \t | A tab character. |
| \Z | ASCII 26 (Control+Z). |
| \\ | A backslash (“\”) character. |
| \% | A “%” character. |
| \_ | A “_” character. |
Additional
An alternative in SQL to escape apostrophes is to change these to paired apostrophes, so:
- INSERT INTO myTable VALUES ('1', 'It\'s amazing!');
- -- equally valid
- INSERT INTO myTable VALUES ('1', 'It''s amazing!');
Latest Posts
-
Joes Revolver Map (JRM)
-
Fri 17-May-13
Hmmm... Sounds like a problem with the identifier. Was it working before and has there been a change ...
-
Fri 17-May-13
Hello Joel: Yes, I do have it published on all pages of the site. I just went back to Revolver maps to ...
-
Fri 17-May-13
Hi Bill, From the developers of RevolverMaps, "the module would need to be published on every page ...
-
Fri 17-May-13
Hi Bill, I'll investigate further as you're not the first to say this happens. In the meantime, simply ...
-
Fri 17-May-13
Its a great extension. But when I set it up I only show my presence on the 3D map and no other visitors ...
-
Fri 17-May-13

