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()
328 if (pdbh->methods->check_liveness && FAILURE == (pdbh->methods->check_liveness)(pdbh)) { in PHP_METHOD()
574 if (dbh->methods->preparer(dbh, statement, stmt, options)) { in PHP_METHOD()
590 if (dbh->methods->in_transaction) { in pdo_is_in_transaction()
591 return dbh->methods->in_transaction(dbh); in pdo_is_in_transaction()
610 if (!dbh->methods->begin) { in PHP_METHOD()
616 if (dbh->methods->begin(dbh)) { in PHP_METHOD()
640 if (dbh->methods->commit(dbh)) { in PHP_METHOD()
664 if (dbh->methods->rollback(dbh)) { in PHP_METHOD()
798 if (dbh->methods->set_attribute) { in pdo_dbh_attribute_set()
799 dbh->methods->set_attribute(dbh, attr, value); in pdo_dbh_attribute_set()
857 if (!dbh->methods->set_attribute) { in pdo_dbh_attribute_set()
862 if (dbh->methods->set_attribute(dbh, attr, value)) { in pdo_dbh_attribute_set()
867 if (!dbh->methods->set_attribute) { in pdo_dbh_attribute_set()
944 if (!dbh->methods->get_attribute) { in PHP_METHOD()
949 switch (dbh->methods->get_attribute(dbh, attr, return_value)) { in PHP_METHOD()
984 ret = dbh->methods->doer(dbh, statement); in PHP_METHOD()
1010 if (!dbh->methods->last_id) { in PHP_METHOD()
1014 last_id = dbh->methods->last_id(dbh, name); in PHP_METHOD()
1071 if (dbh->methods->fetch_err) { in PHP_METHOD()
1072 dbh->methods->fetch_err(dbh, dbh->query_stmt, return_value); in PHP_METHOD()
1135 if (dbh->methods->preparer(dbh, statement, stmt, NULL)) { in PHP_METHOD()
1140 if (stmt->methods->executer(stmt)) { in PHP_METHOD()
1187 if (!dbh->methods->quoter) { in PHP_METHOD()
1191 quoted = dbh->methods->quoter(dbh, str, paramtype); in PHP_METHOD()
1250 if (!dbh || !dbh->methods || !dbh->methods->get_driver_methods) { in pdo_hash_methods()
1253 funcs = dbh->methods->get_driver_methods(dbh, kind); in pdo_hash_methods()
1344 if (dbh->methods && dbh->methods->get_gc) { in dbh_get_gc()
1345 dbh->methods->get_gc(dbh, gc_buffer); in dbh_get_gc()
1387 if (dbh->methods) { in dbh_free()
1388 dbh->methods->closer(dbh); in dbh_free()
1428 if (dbh->driver_data && dbh->methods && dbh->methods->rollback && pdo_is_in_transaction(dbh)) { in pdo_dbh_free_storage()
1429 dbh->methods->rollback(dbh); in pdo_dbh_free_storage()
1433 if (dbh->is_persistent && dbh->methods && dbh->methods->persistent_shutdown) { in pdo_dbh_free_storage()
1434 dbh->methods->persistent_shutdown(dbh); in pdo_dbh_free_storage()