Clear this up a little.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@70130 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Torben Wilson 2002-02-12 21:23:06 +00:00
parent eee09e45c7
commit b132494b94

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.31 $ -->
<!-- $Revision: 1.32 $ -->
<reference id="ref.odbc">
<title>Unified ODBC functions</title>
<titleabbrev>ODBC</titleabbrev>
@ -486,13 +486,12 @@
<listitem>
<simpara>
If you wish to store a string which actually begins and ends
with single quotes, and you cannot escape them with
backslashes--for instance, if your server requires single
quotes to be escaped by doubling them (<literal>''</literal>)
instead of backslashing them (<literal>\'</literal>)--then
you must use another mechanism to store them (such as
executing the query directly with
<function>odbc_exec</function>).
with single quotes, you must escape them or add a space or
other non-single-quote character to the beginning or end of
the parameter, which will prevent the parameter's being taken
as a file name. If this is not an option, then you must use
another mechanism to store the string, such as executing the
query directly with <function>odbc_exec</function>).
</simpara>
</listitem>
</itemizedlist>