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