From 3e77e2747a9fb41eaea04feb33c9bbcebd3ffac5 Mon Sep 17 00:00:00 2001 From: Martin Stjernholm <mast@lysator.liu.se> Date: Sat, 5 Mar 2011 22:18:39 +0100 Subject: [PATCH] Another doc fix. --- lib/modules/Sql.pmod/mysql.pike | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/lib/modules/Sql.pmod/mysql.pike b/lib/modules/Sql.pmod/mysql.pike index 3e94506189..0db6b199a7 100644 --- a/lib/modules/Sql.pmod/mysql.pike +++ b/lib/modules/Sql.pmod/mysql.pike @@ -797,20 +797,10 @@ Mysql.mysql_result big_typed_query (string query, void|string charset) //! Makes a typed SQL query. //! -//! This function sends the SQL query @[query] to the Mysql-server. -//! -//! The types of the result fields depend on the corresponding SQL types. -//! They are mapped as follows: -//! @mixed -//! @type Sql.Null -//! The @tt{NULL@} value is returned as @[Sql.NULL]. -//! @type int -//! Integer values are returned as @tt{int@} values. -//! @type float -//! Floating point values are returned as @tt{float@} values. -//! @type string -//! All other SQL field types are returned as @tt{string@} values. -//! @endmixed +//! This function sends the SQL query @[query] to the MySQL server and +//! returns a result object in typed mode, which means that the types +//! of the result fields depend on the corresponding SQL types. See +//! the class docs for details. //! //! In all other respects, it behaves like @[big_query]. //! -- GitLab