PostgresqlAccess constructor

PostgresqlAccess(
  1. Connection conn, {
  2. 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;
}