Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 05eae7e

Browse files
KalpanaGoelweitzman
authored andcommitted
Add second parameter in createdb function in SqlOracle.php . (#3941)
1 parent b06dd17 commit 05eae7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Sql/SqlOracle.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function creds($hide_password = true)
2828
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']);
2929
}
3030

31-
public function createdbSql($dbname)
31+
public function createdbSql($dbname, $quoted = false)
3232
{
3333
Drush::logger()->error("Unable to generate CREATE DATABASE sql for $dbname");
3434
return false;

0 commit comments

Comments
 (0)