Thanks to visit codestin.com Credit goes to github.com
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 b06dd17 commit 05eae7eCopy full SHA for 05eae7e
src/Sql/SqlOracle.php
@@ -28,7 +28,7 @@ public function creds($hide_password = true)
28
return ' ' . $this->dbSpec['username'] . '/' . $this->dbSpec['password'] . ($this->dbSpec['host'] == 'USETNS' ? '@' . $this->dbSpec['database'] : '@//' . $this->dbSpec['host'] . ':' . ($db_spec['port'] ? $db_spec['port'] : '1521') . '/' . $this->dbSpec['database']);
29
}
30
31
- public function createdbSql($dbname)
+ public function createdbSql($dbname, $quoted = false)
32
{
33
Drush::logger()->error("Unable to generate CREATE DATABASE sql for $dbname");
34
return false;
0 commit comments