diff options
author | unknown <paul@teton.kitebird.com> | 2001-06-05 16:29:52 -0500 |
---|---|---|
committer | unknown <paul@teton.kitebird.com> | 2001-06-05 16:29:52 -0500 |
commit | 703b2384df3ba5a8b8421f94724a90bc716e54a3 (patch) | |
tree | 060a279aeedb86ad29a8fa785285d03615a6c1e0 /Docs | |
parent | 19e54153855391f3843ca0201687b3ff81630ab1 (diff) | |
download | mariadb-git-703b2384df3ba5a8b8421f94724a90bc716e54a3.tar.gz |
manual.texi correct instance of mysql_escape() to mysql_escape_string();
manual.texi add mention of mysql_escape_string() for PHP API;
manual.texi add mention of PreparedStatement, placeholders for JDBC API.
Docs/manual.texi:
correct instance of mysql_escape() to mysql_escape_string();
add mention of mysql_escape_string() for PHP API;
add mention of PreparedStatement, placeholders for JDBC API.
Diffstat (limited to 'Docs')
-rw-r--r-- | Docs/manual.texi | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi index c07d8cf2b40..8406e641275 100644 --- a/Docs/manual.texi +++ b/Docs/manual.texi @@ -12071,11 +12071,13 @@ not give your applications any more access privileges than they need. Users of PHP: @itemize @bullet @item Check out the @code{addslashes()} function. +As of PHP 4.0.3, a @code{mysql_escape_string()} function is available +that is based on the function of the same name in the @strong{MySQL} C API. @end itemize @item Users of @strong{MySQL} C API: @itemize @bullet -@item Check out the @code{mysql_escape()} API call. +@item Check out the @code{mysql_escape_string()} API call. @end itemize @item Users of @strong{MySQL}++: @@ -12087,6 +12089,11 @@ Users of Perl DBI: @itemize @bullet @item Check out the @code{quote()} method or use placeholders. @end itemize +@item +Users of Java JDBC: +@itemize @bullet +@item Use a @code{PreparedStatement} object and placeholders. +@end itemize @end itemize @item |