DBSQLAdapter<C extends Object> constructor

DBSQLAdapter<C extends Object>(
  1. String name,
  2. int minConnections,
  3. int maxConnections,
  4. DBSQLAdapterCapability capability, {
  5. bool generateTables = false,
  6. bool checkTables = true,
  7. Object? populateTables,
  8. EntityRepositoryProvider? parentRepositoryProvider,
  9. Object? populateSource,
  10. Object? populateSourceVariables,
  11. String? workingPath,
  12. bool logSQL = false,
})

Implementation

DBSQLAdapter(super.name, super.minConnections, super.maxConnections,
    DBSQLAdapterCapability super.capability,
    {bool generateTables = false,
    bool checkTables = true,
    Object? populateTables,
    super.parentRepositoryProvider,
    super.populateSource,
    super.populateSourceVariables,
    super.workingPath,
    this.logSQL = false})
    : _generateTables = generateTables,
      _checkTables = checkTables,
      _populateTables = populateTables {
  boot();

  _conditionSQLGenerator =
      ConditionSQLEncoder(this, sqlElementQuote: dialect.elementQuote);
}