Searched refs:dbc (Results 1 – 3 of 3) sorted by relevance
/PHP-7.2/ext/pdo_odbc/ |
H A D | odbc_driver.c | 84 } else if (H->dbc) { in pdo_odbc_error() 86 eh = H->dbc; in pdo_odbc_error() 131 if (H->dbc != SQL_NULL_HANDLE) { in odbc_handle_closer() 132 SQLEndTran(SQL_HANDLE_DBC, H->dbc, SQL_ROLLBACK); in odbc_handle_closer() 133 SQLDisconnect(H->dbc); in odbc_handle_closer() 134 SQLFreeHandle(SQL_HANDLE_DBC, H->dbc); in odbc_handle_closer() 135 H->dbc = NULL; in odbc_handle_closer() 230 rc = SQLAllocHandle(SQL_HANDLE_STMT, H->dbc, &stmt); in odbc_handle_doer() 292 rc = SQLEndTran(SQL_HANDLE_DBC, H->dbc, SQL_COMMIT); in odbc_handle_commit() 327 if (dbh->auto_commit && H->dbc) { in odbc_handle_rollback() [all …]
|
H A D | php_pdo_odbc_int.h | 130 PDO_ODBC_HDBC dbc; member
|
/PHP-7.2/ext/soap/interop/ |
H A D | client_round2_interop.php | 57 var $dbc = NULL; variable in Interop_Client 70 $this->dbc = DB::connect($this->DSN, true); 72 if (DB::isError($this->dbc)) { 73 echo $this->dbc->getMessage(); 74 $this->dbc = NULL; 277 $this->dbc->quote($test_name); 279 $res = $this->dbc->query($sql); 289 $this->dbc->quote($success).",". 290 $this->dbc->quote($error).",". 293 $res = $this->dbc->query($sql); [all …]
|
Completed in 14 milliseconds