compileCreateDatabase method

String? compileCreateDatabase(
  1. String name,
  2. Map<String, Object?>? options
)

Compiles SQL to create a database. Returns null if this dialect doesn't support database creation via SQL.

Implementation

String? compileCreateDatabase(String name, Map<String, Object?>? options) {
  return null;
}