pike.git/
lib/
modules/
Sql.pmod/
pgsql.pike
Branch:
Tag:
Non-build tags
All tags
No tags
2014-11-24
2014-11-24 12:58:54 by Stephen R. van den Berg <srb@cuci.nl>
4d53548047d1b2206c7833862a2c43ea6bf5dcf8 (
13
lines) (+
8
/-
5
)
[
Show
|
Annotate
]
Branch:
8.1
Doc fixes.
164:
//! @member int "sync_parse" //! Set it to zero to turn synchronous parsing 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.
//! @member int "cache_autoprepared_statements" //! If set to zero, it disables the automatic statement prepare and //! cache logic; caching prepared statements can be problematic
190:
//! otherwise you'll get exceptions when you try to query it. Also //! notice that this function @b{can@} raise exceptions if the db //! server doesn't respond, if the database doesn't exist or is not
-
//! accessible
by
you.
+
//! accessible
to
you.
//! //! @seealso //! @[Postgres.postgres], @[Sql.Sql], @[select_db()],
-
//! @url{http://www.postgresql.org/search/?u=%2Fdocs%2Fcurrent%2F&q=
client+connection+defaults@}
+
//! @url{http://www.postgresql.org/search/?u=%2Fdocs%2Fcurrent%2F&q=
client+connection+search_path@}
protected void create(void|string host, void|string database, void|string user, void|string pass, void|mapping(string:mixed) options) {
385:
//! For other runtimeparameters check the PostgreSQL documentation. //! //! @seealso
-
//! @url{http://www.postgresql.org/search/?u=%2Fdocs%2Fcurrent%2F&q=
client+connection+defaults@}
+
//! @url{http://www.postgresql.org/search/?u=%2Fdocs%2Fcurrent%2F&q=
client+connection+search_path@}
//! //! @note //! This function is PostgreSQL-specific, and thus it is not available