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:43:
//! unix timestamps on integer form. //! //! @item String types //! All string types are returned as pike strings. The MySQL glue //! can handle charset conversions for text strings - see //! @[set_charset] and @[set_unicode_decode_mode]. //! //! @enddl //! //! @endsection
+
//!
+
//! @seealso
+
//! @[Sql.Connection], @[Sql.Sql()]
#pike __REAL_VERSION__ #require constant(Mysql.mysql) // Cannot dump this since the #require check may depend on the // presence of system libs at runtime. constant dont_dump_program = 1;
-
+
//!
inherit Mysql.mysql; #define UNICODE_DECODE_MODE 1 // Unicode decode mode #define LATIN1_UNICODE_ENCODE_MODE 2 // Unicode encode mode with latin1 charset #define UTF8_UNICODE_ENCODE_MODE 4 // Unicode encode mode with utf8 charset #ifdef MYSQL_CHARSET_DEBUG #define CH_DEBUG(X...) \ werror(replace (sprintf ("%O", this), "%", "%%") + ": " + X) #else