pike.git
/
lib
/
modules
/
Sql.pmod
/
mysql.pike
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/lib/modules/Sql.pmod/mysql.pike:671:
if (String.width (query) == 8) \ new_send_charset = "latin1"; \ else { \ CH_DEBUG ("Converting (mysql-)latin1 query to utf8.\n"); \ query = utf8_encode_query (query, latin1_to_utf8); \ new_send_charset = "utf8"; \ } \ } \ \ else { /* utf8_mode & UTF8_UNICODE_ENCODE_MODE */ \
-
if
(_can_
send_
as_latin1
(query))
\
-
new_send_
charset
=
"latin1";
\
-
else
{
\
+
/*
NB: The
send_
charset
may
only
be
upgraded
from
\
+
*
"latin1"
to
"utf8",
not
the
other way around.
\
+
*
This is to avoid extraneous
charset
changes
\
+
*
where
the
charset
is
changed
from
query
to
query.
\
+
*/
\
+
if ((send_charset == "utf8") || !_can_send_as_latin1(query)) { \
CH_DEBUG ("Converting query to utf8.\n"); \ query = utf8_encode_query (query, string_to_utf8); \ new_send_charset = "utf8"; \ } \ } \ \ if (new_send_charset != send_charset) { \ CH_DEBUG ("Switching charset from %O to %O.\n", \ send_charset, new_send_charset); \ if (mixed err = catch { \