pike.git
/
lib
/
modules
/
Sql.pmod
/
sql_util.pmod
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/lib/modules/Sql.pmod/sql_util.pmod:153:
}); return replace(query,k,v); } //! Result object wrapper performing utf8 decoding of all fields. class UnicodeWrapper ( // The wrapped result object. protected object master_result ) {
+
inherit Sql.Result;
+
//! Returns the number of rows in the result. int num_rows() { return master_result->num_rows(); } //! Returns the number of fields in the result. int num_fields() { return master_result->num_fields();