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.
29
2006/
11
/
27
16:
28
:
39
mast
Exp $
+
* $Id: mysql.pike,v 1.
30
2006/
12
/
03
16:
47
:
20
nilsson
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:132:
//! //! @seealso //! @[set_unicode_encode_mode] { return !!send_charset; } #if constant (Mysql.mysql.HAVE_MYSQL_FIELD_CHARSETNR) void set_unicode_decode_mode (int enable) #else
+
//! @ignore
static void broken_set_unicode_decode_mode (int enable)
-
+
//! @endignore
#endif //! Enable or disable unicode decode mode. //! //! In this mode, if the server supports UTF-8 then non-binary text //! strings in results are automatically decoded to (possibly wide) //! unicode strings. Not enabled by default. //! //! The statement "@expr{SET character_set_results = utf8@}" is sent //! to the server to enable the mode. When the mode is disabled, //! "@expr{SET character_set_results = xxx@}" is sent, where