QueryExecutor constructor
QueryExecutor({
- required SqlDriverAdapter adapter,
- SqlCompiler? compiler,
- SchemaRegistry? schema,
- 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,
);