PostgresqlAccess constructor
PostgresqlAccess(
- Connection conn, {
- bool cache = true,
Constructor. *
-
cache
- whether to enable the cache. Default: true.
Implementation
PostgresqlAccess(Connection this.conn, {bool cache = true}) {
_agent = PostgresqlAccessAgent(this, cache: cache);
(reader as _AccessReader)._cache = _cache;
}