13 ->from(
'information_schema.schemata' )
14 ->where( [
'schema_name' => $database ] )
15 ->caller( __METHOD__ )
21 $encDatabase = $conn->addIdentifierQuotes( $database );
22 $conn->
query(
"CREATE DATABASE IF NOT EXISTS $encDatabase", __METHOD__ );
23 return Status::newGood();