PostgressORM constructor

PostgressORM(
  1. Postgres_SqlConnection _postgresConnection,
  2. dynamic schemaName,
  3. dynamic tableName,
  4. NewRecordEvent addRecord,
)

Implementation

PostgressORM(
    this._postgresConnection, schemaName, tableName, NewRecordEvent addRecord)
    : super(schemaName, tableName, addRecord) {
  setORMConnection(this, _postgresConnection);
  _postgresConnection.className = _className;
}