Hey I want to select records with name O'Neil, How can i do that in Informix.
select * from name_table where lastname = 'O'Neil' --> Doesn't Work.
|
Hey I want to select records with name O'Neil, How can i do that in Informix. select * from name_table where lastname = 'O'Neil' --> Doesn't Work. |
|||
|
|
|
You must escape single quote with another single quote:
|
|||
|
|
|
With Informix, you generally have two choices. The Standard SQL technique (described by Michal Niklas) always works and is the simple, recommended solution. All appearances of a single quote in a string are doubled up:
An alternative technique that works unless you have set DELIMIDENT in your environment is to use double quotes around the string:
If delimited identifiers are enabled by DELIMIDENT, then this has a different meaning; the DBMS will be looking for a column called "O'Neill" in the table (because it is an identifier, not a string). If you have both quotes in a string, then you have to be be careful:
|
|||
|
|
|
My 2nd answer with proposition of technology change. I don't know what technology you use, but maybe you can use PreparedStatements. Example in Jython (Python that can use JDBC drivers):
As you see PreparedStatement use Similar techniques can be user for ODBC or other technologies. |
|||
|
|