Skip to content
Snippets Groups Projects
Commit 15a2671f authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Updated the documentation somewhat.

Rev: lib/modules/Sql.pmod/mysql.pike:1.45
parent 8f3bc167
No related branches found
No related tags found
No related merge requests found
/* /*
* $Id: mysql.pike,v 1.44 2009/11/10 12:55:57 grubba Exp $ * $Id: mysql.pike,v 1.45 2009/11/11 13:38:19 grubba Exp $
* *
* Glue for the Mysql-module * Glue for the Mysql-module
*/ */
...@@ -710,6 +710,9 @@ Mysql.mysql_result big_query (string query, ...@@ -710,6 +710,9 @@ Mysql.mysql_result big_query (string query,
//! A @[Mysql.mysql_result] object is returned if the query is of a //! A @[Mysql.mysql_result] object is returned if the query is of a
//! kind that returns a result. Zero is returned otherwise. //! kind that returns a result. Zero is returned otherwise.
//! //!
//! The individual fields are returned as strings except for @tt{NULL@},
//! which is returned as @[UNDEFINED].
//!
//! @seealso //! @seealso
//! @[Sql.big_query()], @[big_typed_query()], @[streaming_query()] //! @[Sql.big_query()], @[big_typed_query()], @[streaming_query()]
{ {
...@@ -744,8 +747,8 @@ Mysql.mysql_result big_typed_query (string query, ...@@ -744,8 +747,8 @@ Mysql.mysql_result big_typed_query (string query,
//! The types of the result fields depend on the corresponding SQL types. //! The types of the result fields depend on the corresponding SQL types.
//! They are mapped as follows: //! They are mapped as follows:
//! @mixed //! @mixed
//! @type zero //! @type Sql.Null
//! The @tt{NULL@} value is returned as @[UNDEFINED]. //! The @tt{NULL@} value is returned as @[Sql.NULL].
//! @type int //! @type int
//! Integer values are returned as @tt{int@} values. //! Integer values are returned as @tt{int@} values.
//! @type float //! @type float
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment