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

Sql.mysql: Fixed Autodoc mk II markup.

parent 5625623e
Branches
Tags
No related merge requests found
...@@ -14,20 +14,30 @@ ...@@ -14,20 +14,30 @@
//! types are represented like this: //! types are represented like this:
//! //!
//! @dl //! @dl
//! @item The NULL value //! @item NULL
//! Returned as @[Val.null]. //! Returned as @[Val.null].
//! //!
//! @item BIT, TINYINT, BOOL, SMALLINT, MEDIUMINT, INT, BIGINT //! @item BIT
//! @item TINYINT
//! @item BOOL
//! @item SMALLINT
//! @item MEDIUMINT
//! @item INT
//! @item BIGINT
//! Returned as pike integers. //! Returned as pike integers.
//! //!
//! @item FLOAT, DOUBLE //! @item FLOAT
//! @item DOUBLE
//! Returned as pike floats. //! Returned as pike floats.
//! //!
//! @item DECIMAL //! @item DECIMAL
//! Returned as pike integers for fields that are declared to //! Returned as pike integers for fields that are declared to
//! contain zero decimals, otherwise returned as @[Gmp.mpq] objects. //! contain zero decimals, otherwise returned as @[Gmp.mpq] objects.
//! //!
//! @item DATE, DATETIME, TIME, YEAR //! @item DATE
//! @item DATETIME
//! @item TIME
//! @item YEAR
//! Returned as strings in their display representation (see the //! Returned as strings in their display representation (see the
//! MySQL manual). //! MySQL manual).
//! //!
...@@ -44,14 +54,14 @@ ...@@ -44,14 +54,14 @@
//! @tt{UNIX_TIMESTAMP@} function in the queries to retrieve them as //! @tt{UNIX_TIMESTAMP@} function in the queries to retrieve them as
//! unix timestamps on integer form. //! unix timestamps on integer form.
//! //!
//! @item String types //! @item "String types"
//! All string types are returned as pike strings. The MySQL glue //! All string types are returned as pike strings. The MySQL glue
//! can handle charset conversions for text strings - see //! can handle charset conversions for text strings - see
//! @[set_charset] and @[set_unicode_decode_mode]. //! @[set_charset] and @[set_unicode_decode_mode].
//! //!
//! @enddl //! @enddl
//! //!
//! @section //! @endsection
#pike __REAL_VERSION__ #pike __REAL_VERSION__
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment