QueryExecutor constructor

QueryExecutor({
  1. required SqlDriverAdapter adapter,
  2. SqlCompiler? compiler,
  3. SchemaRegistry? schema,
  4. QueryLogger? logger,
})

Implementation

QueryExecutor({
  required this.adapter,
  SqlCompiler? compiler,
  this.schema,
  this.logger,
}) : compiler = compiler ??
          SqlCompiler(
            provider: adapter.provider,
            schemaName: adapter.getConnectionInfo()?.schemaName,
            schema: schema,
          );