Correct property name. It's 'dbpassword', with the 'db' prefix.
This commit is contained in:
parent
005c98e46c
commit
b90f88f939
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ class OCI extends AbstractDatabase {
|
|||
*/
|
||||
private function createDBUser($connection) {
|
||||
$name = $this->dbuser;
|
||||
$password = $this->password;
|
||||
$password = $this->dbpassword;
|
||||
$query = "SELECT * FROM all_users WHERE USERNAME = :un";
|
||||
$stmt = oci_parse($connection, $query);
|
||||
if (!$stmt) {
|
||||
|
|
Loading…
Reference in a new issue