Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pike
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pikelang
pike
Commits
31b2308d
Commit
31b2308d
authored
14 years ago
by
Henrik (Grubba) Grubbström
Browse files
Options
Downloads
Patches
Plain Diff
Sql.mysql: Fixed Autodoc mk II markup.
parent
5625623e
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/modules/Sql.pmod/mysql.pike
+16
-6
16 additions, 6 deletions
lib/modules/Sql.pmod/mysql.pike
with
16 additions
and
6 deletions
lib/modules/Sql.pmod/mysql.pike
+
16
−
6
View file @
31b2308d
...
@@ -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
//! @
end
section
#pike __REAL_VERSION__
#pike __REAL_VERSION__
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment