pike.git/
lib/
modules/
Sql.pmod/
module.pmod
Branch:
Tag:
Non-build tags
All tags
No tags
2016-03-27
2016-03-27 10:39:48 by Henrik Grubbström (Grubba) <grubba@grubba.org>
234d7cc107a4e01d81ad3f3fe28771a738406ec8 (
15
lines) (+
15
/-
0
)
[
Show
|
Annotate
]
Branch:
8.1
Sql: Make Connection and Result available in the Sql namespace.
62:
} return sql_url; }
+
+
//! Base class for a connection to an SQL database.
+
class Connection
+
{
+
//!
+
inherit __builtin.Sql.Connection;
+
}
+
+
//! Base class for the result from @[Connection()->big_query()] et al.
+
class Result
+
{
+
//!
+
inherit __builtin.Sql.Result;
+
}