We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fee8a1e commit 04de1e6Copy full SHA for 04de1e6
src/Schema/OracleSchemaManager.php
@@ -270,7 +270,7 @@ public function createDatabase(string $database): void
270
$params = $this->connection->getParams();
271
272
if (isset($params['password'])) {
273
- $statement .= ' IDENTIFIED BY ' . $params['password'];
+ $statement .= ' IDENTIFIED BY ' . $this->connection->quoteSingleIdentifier($params['password']);
274
}
275
276
$this->connection->executeStatement($statement);
0 commit comments