compileDropDatabaseIfExists method

String? compileDropDatabaseIfExists(
  1. String name
)

Compiles SQL to drop a database if it exists. Returns null if this dialect doesn't support database dropping via SQL.

Implementation

String? compileDropDatabaseIfExists(String name) {
  return null;
}