473,473 Members | 1,742 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Problem accessing data with \ in it

I have a problem selecting records with \ in any values.

For example:

SELECT * FROM ADDRESS WHERE STREET = "A\"

will give an error:

If I replace \ with \\ then it works. Eg.

SELECT * FROM ADDRESS WHERE STREET = "A\\"

Is there any setting in MySQL that can overcome this?

Tks
John

Feb 17 '06 #1
12 2485
"zMisc" <yo********@hotmail.com> wrote in message
news:lg*****************@news-server.bigpond.net.au...
If I replace \ with \\ then it works. Eg.

SELECT * FROM ADDRESS WHERE STREET = "A\\"

Is there any setting in MySQL that can overcome this?


What do you mean overcome this? It's a feature of the string literal
syntax, very similar to handling of backslashes within strings in C/C++,
Java, PHP, or Perl.

There seem to be two alternatives, according to
http://dev.mysql.com/doc/refman/5.0/...g-syntax.html:

- Process the string with a function that escapes special characters, e.g.
mysql_real_escape_string() C API or PHP API functions, or quote() in Perl
DBI. These API functions scan for characters that need the backslash
treatment (like \ or ') and insert the backslashes as needed.

- Use parameterized queries. Prepare a query "SELECT * FROM ADDRESS WHERE
STREET = ?" and then execute the query from your application with a
parameter set to the string "A\". No escaping is necessary when you do this
(except what is required in your application programming language if you
specify the string as a literal).

Regards,
Bill K.
Feb 17 '06 #2
Hi Bill,

As usuall thank you for your response.

I replace \ with \\ before the update and it works.

The problem is I am converting my app that supports MS Access and MS SQL to
now support MySQL so I would prefer not to change all my select to use
parameterized queries.

Access and MS SQL can handle the \ character.

Tks
"Bill Karwin" <bi**@karwin.com> wrote in message
news:dt********@enews1.newsguy.com...
"zMisc" <yo********@hotmail.com> wrote in message
news:lg*****************@news-server.bigpond.net.au...
If I replace \ with \\ then it works. Eg.

SELECT * FROM ADDRESS WHERE STREET = "A\\"

Is there any setting in MySQL that can overcome this?


What do you mean overcome this? It's a feature of the string literal
syntax, very similar to handling of backslashes within strings in C/C++,
Java, PHP, or Perl.

There seem to be two alternatives, according to
http://dev.mysql.com/doc/refman/5.0/...g-syntax.html:

- Process the string with a function that escapes special characters, e.g.
mysql_real_escape_string() C API or PHP API functions, or quote() in Perl
DBI. These API functions scan for characters that need the backslash
treatment (like \ or ') and insert the backslashes as needed.

- Use parameterized queries. Prepare a query "SELECT * FROM ADDRESS WHERE
STREET = ?" and then execute the query from your application with a
parameter set to the string "A\". No escaping is necessary when you do
this (except what is required in your application programming language if
you specify the string as a literal).

Regards,
Bill K.

Feb 17 '06 #3
"zMisc" <yo********@hotmail.com> wrote in message
news:9m******************@news-server.bigpond.net.au...
Access and MS SQL can handle the \ character.


Okay, I've found an option for you.
MySQL 5.0.3 and later implement a SQL mode called NO_BACKSLASH_ESCAPES.

See http://dev.mysql.com/doc/refman/5.0/...-sql-mode.html for docs on
SQL modes and how to set them at runtime or when the MySQL server starts up.
You might also be interested in the mode MSSQL, to give greater
compatibility with MS SQL Server syntax.

NB: if you use MySQL version prior to 5.0.3, this option is not available.

Regards,
Bill K.
Feb 17 '06 #4
Tks Bill.

"Bill Karwin" <bi**@karwin.com> wrote in message
news:dt********@enews2.newsguy.com...
"zMisc" <yo********@hotmail.com> wrote in message
news:9m******************@news-server.bigpond.net.au...
Access and MS SQL can handle the \ character.


Okay, I've found an option for you.
MySQL 5.0.3 and later implement a SQL mode called NO_BACKSLASH_ESCAPES.

See http://dev.mysql.com/doc/refman/5.0/...-sql-mode.html for docs
on SQL modes and how to set them at runtime or when the MySQL server
starts up. You might also be interested in the mode MSSQL, to give greater
compatibility with MS SQL Server syntax.

NB: if you use MySQL version prior to 5.0.3, this option is not available.

Regards,
Bill K.

Feb 17 '06 #5
Hi Bill,

Where can I find the MySQL version? I look at MySQL.exe and there's no
version property.

Tks

"Bill Karwin" <bi**@karwin.com> wrote in message
news:dt********@enews2.newsguy.com...
"zMisc" <yo********@hotmail.com> wrote in message
news:9m******************@news-server.bigpond.net.au...
Access and MS SQL can handle the \ character.


Okay, I've found an option for you.
MySQL 5.0.3 and later implement a SQL mode called NO_BACKSLASH_ESCAPES.

See http://dev.mysql.com/doc/refman/5.0/...-sql-mode.html for docs
on SQL modes and how to set them at runtime or when the MySQL server
starts up. You might also be interested in the mode MSSQL, to give greater
compatibility with MS SQL Server syntax.

NB: if you use MySQL version prior to 5.0.3, this option is not available.

Regards,
Bill K.

Feb 17 '06 #6
"zMisc" <yo********@hotmail.com> wrote in message
news:va******************@news-server.bigpond.net.au...
Where can I find the MySQL version? I look at MySQL.exe and there's no
version property.


To get the MySQL server version (which is more relevant in this case),
connect to the MySQL server and issue a statement:
SHOW VARIABLES LIKE 'version';

The get the MySQL client version, you can run the command
"mysql.exe --version".

I make the distinction because the version of the client and the version of
the server are not necessarily the same, especially if you're using the
client to connect to a MySQL server instance running on another machine.

Regards,
Bill K.
Feb 17 '06 #7
Hi Bill,

Tks.

I've tried setting:

set sql_mode = 'NO_BACKSLASH_ESCAPES'

then try this:

SELECT * FROM `TEST` WHERE `ADDRESS` = '1\10'

and get a syntax error. But:

SELECT * FROM `TEST` WHERE `ADDRESS` = '1\\10'

still works. It looks like set sql_mode = 'NO_BACKSLASH_ESCAPES' makes no
difference.

"Bill Karwin" <bi**@karwin.com> wrote in message
news:dt*********@enews1.newsguy.com...
"zMisc" <yo********@hotmail.com> wrote in message
news:va******************@news-server.bigpond.net.au...
Where can I find the MySQL version? I look at MySQL.exe and there's no
version property.


To get the MySQL server version (which is more relevant in this case),
connect to the MySQL server and issue a statement:
SHOW VARIABLES LIKE 'version';

The get the MySQL client version, you can run the command
"mysql.exe --version".

I make the distinction because the version of the client and the version
of the server are not necessarily the same, especially if you're using the
client to connect to a MySQL server instance running on another machine.

Regards,
Bill K.

Feb 19 '06 #8
"zMisc" <yo********@hotmail.com> wrote in message
news:Of******************@news-server.bigpond.net.au...
It looks like set sql_mode = 'NO_BACKSLASH_ESCAPES' makes no difference.


I tried that too, and like you said, it didn't seem to have any effect.

I got it to work with:
set global sql_mode='NO_BACKSLASH_ESCAPES';
select 'foo\\bar'';

Gives: foo\\bar whereas that query gave foo\bar before.

Regards,
Bill K.
Feb 19 '06 #9
zMisc wrote:
I have a problem selecting records with \ in any values.

For example:

SELECT * FROM ADDRESS WHERE STREET = "A\"

will give an error:

If I replace \ with \\ then it works. Eg.

SELECT * FROM ADDRESS WHERE STREET = "A\\"

Is there any setting in MySQL that can overcome this?

Tks
John


As an ANSI standard the default should be NO_BACKSLASH_ESCAPES. Anything
contained with the quotes 'xx\x\x\x' should be treated as data and NEVER
interpreted to be anything else. So, whoever the orginal designers were spent
way too much time working on **IX\Windows crap OS's.

IMHO Another flaw in MySQL.

Data is Data and should never to be treated the same as you would a variable in
an OS-level scripting language.

--
Michael Austin.
DBA Consultant
Donations welcomed. Http://www.firstdbasource.com/donations.html
:)
Feb 19 '06 #10
"Michael Austin" <ma*****@firstdbasource.com> wrote in message
news:lm*****************@newssvr25.news.prodigy.ne t...
IMHO Another flaw in MySQL.


I agree that this fails to comply with the ANSI standard, but the lesser
evil is to avoid breaking people's existing code, when possible.

Regards,
Bill K.
Feb 20 '06 #11
Bill Karwin wrote:
"Michael Austin" <ma*****@firstdbasource.com> wrote in message
news:lm*****************@newssvr25.news.prodigy.ne t...
IMHO Another flaw in MySQL.

I agree that this fails to comply with the ANSI standard, but the lesser
evil is to avoid breaking people's existing code, when possible.


The real issue is that if the developers of MySQL had bothered to read the
standards and follow every other database company in the world in regards to
this issue, there would be no "existing" code to worry about because it would
have been done right in the first place.

Regards,
Bill K.

--
Michael Austin.
DBA Consultant
Donations welcomed. Http://www.firstdbasource.com/donations.html
:)
Feb 21 '06 #12
"Michael Austin" <ma*****@firstdbasource.com> wrote in message
news:V7*****************@newssvr25.news.prodigy.ne t...
The real issue is that if the developers of MySQL had bothered to read the
standards and follow every other database company in the world in regards
to this issue, there would be no "existing" code to worry about because it
would have been done right in the first place.


So you're saying that no other RDBMS implementation uses backslash escape
sequences for special characters in string literals? I'm pretty sure that's
demonstrably untrue.

The escape sequence in SQL string literals is a very useful extension that
allows a string to contain special characters. Otherwise, we have to resort
to gymnastics of concatenation string expressions, UDF's, cartesian product
with a table containing a single "\n" character, etc.

There's a reason that virtually every programming language does define
string escape sequences. It's a pity that the ANSI SQL standard does not.

Regards,
Bill K.
Feb 21 '06 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Darren Smith | last post by:
I am having a great deal of difficulty accessing individual fields generated from a Sql Server 7 view. When I specify the actual field name, I get the error: Microsoft OLE DB Provider for ODBC...
17
by: Dave | last post by:
Hi I'm making a 3D Engine which consists of the class C3DEngine. Part of this engine is a file loader, a class called CMeshLoader. I have made an instance of CMeshLoader in C3DEngine, ie...
0
by: Lokkju | last post by:
I am pretty much lost here - I am trying to create a managed c++ wrapper for this dll, so that I can use it from c#/vb.net, however, it does not conform to any standard style of coding I have seen....
5
by: Scott M. Lyon | last post by:
I've just discovered a bug in some code I wrote a little while ago, and I need you guys' help to fix it. My program imports data from a standard Excel Spreadsheet (just with specific column...
11
by: E.T. Grey | last post by:
Hi, I have an interesting problem. I have a (LARGE) set of historical data that I want to keep on a central server, as several separate files. I want a client process to be able to request the...
39
by: Martin Jørgensen | last post by:
Hi, I'm relatively new with C-programming and even though I've read about pointers and arrays many times, it's a topic that is a little confusing to me - at least at this moment: ---- 1)...
5
by: weidongtom | last post by:
Hi, I tried to implement the Universal Machine as described in http://www.boundvariable.org/task.shtml, and I managed to get one implemented (After looking at what other's have done.) But when I...
0
by: mitrofun63 | last post by:
Hello. On my production site i have DB2 9.1.2 database configured for archiving logs and making backup through TSM Data Protection for DB2 UDB The LOGARCHMETH1 parameter is set to ...
3
by: djsuson | last post by:
I'm trying to set up an inheritance tree that also uses templates. This is an attempt to simplify some previous code that was filled with redundancies. I'm working with g++ 3.4.6. The code is split...
9
by: Meendar | last post by:
Hi, Below is my code snippet having only one form, <form> <input type ="radio" name="action" value="xyz" checked>xyz <input type ="radio" name="action" value="zyx">zyx <input type ="radio"...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.