diff --git a/lib/modules/Sql.pmod/Sql.pike b/lib/modules/Sql.pmod/Sql.pike index 244e36e5e9d2a7746a56d498e2140cd054f77b41..981492fbaaf845b9247d7736f04c980f15867414 100644 --- a/lib/modules/Sql.pmod/Sql.pike +++ b/lib/modules/Sql.pmod/Sql.pike @@ -1,5 +1,5 @@ /* - * $Id: Sql.pike,v 1.98 2009/11/06 15:23:49 grubba Exp $ + * $Id: Sql.pike,v 1.99 2009/11/06 16:53:35 grubba Exp $ * * Implements the generic parts of the SQL-interface * @@ -633,7 +633,7 @@ int|object big_typed_query(object|string q, mixed ... extraargs) pre_res = master_sql->big_typed_query(q); } - if(pre_res) return .sql_object_result(pre_res, 3); + if(pre_res) return .sql_object_result(pre_res); return 0; } diff --git a/lib/modules/Sql.pmod/sql_result.pike b/lib/modules/Sql.pmod/sql_result.pike index 7fe43129eb69fa8d549cfa694691ef5b3a4bc56b..686b80e4d336e2e7506ca061d2579f3dd4408cd6 100644 --- a/lib/modules/Sql.pmod/sql_result.pike +++ b/lib/modules/Sql.pmod/sql_result.pike @@ -1,5 +1,5 @@ /* - * $Id: sql_result.pike,v 1.24 2009/11/06 15:22:13 grubba Exp $ + * $Id: sql_result.pike,v 1.25 2009/11/06 16:54:14 grubba Exp $ * * Implements the generic result module of the SQL-interface * @@ -86,7 +86,7 @@ void seek(int skip) { //! @endmixed //! //! @note -//! @tt{TYPED@}-operation was not supported at all prior to Pike 7.8.361, +//! @tt{TYPED@}-operation was not supported at all prior to Pike 7.8.363, //! and may not be supported for all databases. int|array(string|int|float) fetch_row();