Example #1
0
Sql::Sql(SqlSource& s) {
	cn = s.CreateConnection();
}
Example #2
0
Sql::Sql(const SqlStatement& stmt, SqlSource& s) {
	cn = s.CreateConnection();
	SetStatement(stmt);
}
Example #3
0
void Sql::SetSession(SqlSource& s) {
	Detach();
	cn = s.CreateConnection();
}