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:1:
/*
-
* $Id: mysql.pike,v 1.
34
2008/
01
/
09
14
:
26
:
07
mast Exp $
+
* $Id: mysql.pike,v 1.
35
2008/
11
/
26
01
:
02
:
57
mast Exp $
* * Glue for the Mysql-module */ //! Implements the glue needed to access the Mysql-module from the generic //! SQL module. #pike __REAL_VERSION__ #if constant(Mysql.mysql)
pike.git/lib/modules/Sql.pmod/mysql.pike:179:
} #endif if (enable) { CH_DEBUG("Enabling unicode decode mode.\n"); ::big_query ("SET character_set_results = utf8"); utf8_mode |= UNICODE_DECODE_MODE; } else { CH_DEBUG("Disabling unicode decode mode.\n");
-
::big_query ("SET character_set_results = " + get_charset());
+
::big_query ("SET character_set_results = " +
::
get_charset());
utf8_mode &= ~UNICODE_DECODE_MODE; } } int get_unicode_decode_mode() //! Returns nonzero if unicode decode mode is enabled, zero otherwise. //! //! @seealso //! @[set_unicode_decode_mode] {