SQLDialect constructor

const SQLDialect(
  1. String name, {
  2. String elementQuote = '',
  3. bool acceptsOutputSyntax = false,
  4. bool acceptsReturningSyntax = false,
  5. bool acceptsTemporaryTableForReturning = false,
  6. bool acceptsInsertDefaultValues = false,
  7. bool acceptsInsertIgnore = false,
  8. bool acceptsInsertOnConflict = false,
  9. bool acceptsVarcharWithoutMaximumSize = false,
})

Implementation

const SQLDialect(
  super.name, {
  this.elementQuote = '',
  this.acceptsOutputSyntax = false,
  this.acceptsReturningSyntax = false,
  this.acceptsTemporaryTableForReturning = false,
  this.acceptsInsertDefaultValues = false,
  this.acceptsInsertIgnore = false,
  this.acceptsInsertOnConflict = false,
  this.acceptsVarcharWithoutMaximumSize = false,
});