pike.git/
lib/
modules/
Sql.pmod/
mysql.pike
Branch:
Tag:
Non-build tags
All tags
No tags
2011-03-06
2011-03-06 00:20:39 by Martin Stjernholm <mast@lysator.liu.se>
3e77e2747a9fb41eaea04feb33c9bbcebd3ffac5 (
19
lines) (+
5
/-
14
)
[
Show
|
Annotate
]
Branch:
7.9
Another doc fix.
797:
void|string charset) //! Makes a typed SQL query. //!
-
//! This function sends the SQL query @[query] to the
Mysql-
server.
+
//! 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.
//!
-
//! 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
-
//!
+
//! In all other respects, it behaves like @[big_query]. //! //! @seealso