pike.git
/
lib
/
modules
/
Sql.pmod
/
module.pmod
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/lib/modules/Sql.pmod/module.pmod:55:
if (sizeof(a) > 1) { host = a[-1]; a = (a[..<1] * "@")/":"; string user = a[0]; if (sizeof(a) > 1) { sql_url = prot + "://" + user + ":CENSORED@" + host; } } 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;
+
}