pike.git/
lib/
modules/
Sql.pmod/
pgsql.pike
Branch:
Tag:
Non-build tags
All tags
No tags
2014-11-24
2014-11-24 13:12:43 by Stephen R. van den Berg <srb@cuci.nl>
ac824be59ee949b5844aa362899c21eafd15633f (
9
lines) (+
6
/-
3
)
[
Show
|
Annotate
]
Branch:
8.1
Fix some more docs.
230:
//! During the execution of a statement, this function accumulates all //! non-error messages (notices, warnings, etc.). If a statement does not //! generate any errors, this function will return all collected messages
-
//!
from
the last statement.
+
//!
since
the last statement.
//! //! @note //! The string returned is not newline-terminated.
1703:
//! @member int ":_sync" //! Forces synchronous parsing on or off for statements. //! Setting this to off can cause surprises because statements could
-
//! be parsed before the previous statements have been executed.
-
//!
This
can speed up parsing
by
increased parallelism.
+
//! be parsed before the previous statements have been executed
+
//! (e
.
g. references to temporary tables created in the preceding
+
//!
statement),
+
//!
but it
can speed up parsing
due
to
increased parallelism.
//! @endmapping //! //! @note