diff options
| author | Keita Jamadam Sugama <sugama@jamadam.com> | 2022-10-02 08:18:56 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-01 17:18:56 -0600 |
| commit | 8dafad709ca8951b1b665f2576d4680f7b4ef9b1 (patch) | |
| tree | 229825c05bdf98c645caddad35f443779f6dae00 /drivers/adodb-oci8.inc.php | |
| parent | e3e3d14051dcd4d9203a12de87848a43a0687da4 (diff) | |
| download | adodb-8dafad709ca8951b1b665f2576d4680f7b4ef9b1.tar.gz adodb-8dafad709ca8951b1b665f2576d4680f7b4ef9b1.tar.bz2 adodb-8dafad709ca8951b1b665f2576d4680f7b4ef9b1.zip | |
silence deprecation warnings on oci connect (#883)
Diffstat (limited to 'drivers/adodb-oci8.inc.php')
| -rw-r--r-- | drivers/adodb-oci8.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/adodb-oci8.inc.php b/drivers/adodb-oci8.inc.php index 82375546..0ecf05b8 100644 --- a/drivers/adodb-oci8.inc.php +++ b/drivers/adodb-oci8.inc.php @@ -289,7 +289,7 @@ END; $argUsername, $argPassword, $argDatabasename, - $this->charSet ?: null, + $this->charSet ?: '', $sessionMode ); if (!$this->_connectionID) { |
