Lines Matching refs:methods

152 	if (dbh->methods->fetch_err) {  in pdo_handle_error()
158 dbh->methods->fetch_err(dbh, stmt, &info); in pdo_handle_error()
413 if (pdbh->methods->check_liveness && FAILURE == (pdbh->methods->check_liveness)(pdbh)) { in php_pdo_internal_construct_driver()
657 if (dbh->methods->preparer(dbh, statement, stmt, options)) { in PHP_METHOD()
677 if (dbh->methods->in_transaction) { in pdo_is_in_transaction()
678 return dbh->methods->in_transaction(dbh); in pdo_is_in_transaction()
697 if (!dbh->methods->begin) { in PHP_METHOD()
703 if (dbh->methods->begin(dbh)) { in PHP_METHOD()
727 if (dbh->methods->commit(dbh)) { in PHP_METHOD()
751 if (dbh->methods->rollback(dbh)) { in PHP_METHOD()
885 if (dbh->methods->set_attribute) { in pdo_dbh_attribute_set()
886 dbh->methods->set_attribute(dbh, attr, value); in pdo_dbh_attribute_set()
944 if (!dbh->methods->set_attribute) { in pdo_dbh_attribute_set()
949 if (dbh->methods->set_attribute(dbh, attr, value)) { in pdo_dbh_attribute_set()
954 if (!dbh->methods->set_attribute) { in pdo_dbh_attribute_set()
1031 if (!dbh->methods->get_attribute) { in PHP_METHOD()
1036 switch (dbh->methods->get_attribute(dbh, attr, return_value)) { in PHP_METHOD()
1071 ret = dbh->methods->doer(dbh, statement); in PHP_METHOD()
1097 if (!dbh->methods->last_id) { in PHP_METHOD()
1101 last_id = dbh->methods->last_id(dbh, name); in PHP_METHOD()
1158 if (dbh->methods->fetch_err) { in PHP_METHOD()
1159 dbh->methods->fetch_err(dbh, dbh->query_stmt, return_value); in PHP_METHOD()
1222 if (dbh->methods->preparer(dbh, statement, stmt, NULL)) { in PHP_METHOD()
1227 if (stmt->methods->executer(stmt)) { in PHP_METHOD()
1278 if (!dbh->methods->quoter) { in PHP_METHOD()
1282 quoted = dbh->methods->quoter(dbh, str, paramtype); in PHP_METHOD()
1341 if (!dbh || !dbh->methods || !dbh->methods->get_driver_methods) { in pdo_hash_methods()
1344 funcs = dbh->methods->get_driver_methods(dbh, kind); in pdo_hash_methods()
1436 if (dbh->methods && dbh->methods->get_gc) { in dbh_get_gc()
1437 dbh->methods->get_gc(dbh, gc_buffer); in dbh_get_gc()
1480 if (dbh->methods) { in dbh_free()
1481 dbh->methods->closer(dbh); in dbh_free()
1521 if (dbh->driver_data && dbh->methods && dbh->methods->rollback && pdo_is_in_transaction(dbh)) { in pdo_dbh_free_storage()
1522 dbh->methods->rollback(dbh); in pdo_dbh_free_storage()
1526 if (dbh->is_persistent && dbh->methods && dbh->methods->persistent_shutdown) { in pdo_dbh_free_storage()
1527 dbh->methods->persistent_shutdown(dbh); in pdo_dbh_free_storage()