DataSourceImpl

Implementation of simple DataSource: it just holds connection parameters, and can create new Connection by getConnection(). Method close() on such connection will really close connection.

class DataSourceImpl : DataSource {
Driver driver;
string url;
string[string] params;
}

Meta