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.
2 parents 3c658c8 + 04de1e6 commit d976b30Copy full SHA for d976b30
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