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()
389 if (pdbh->methods->check_liveness && FAILURE == (pdbh->methods->check_liveness)(pdbh)) { in internal_construct()
625 if (dbh->methods->preparer(dbh, statement, stmt, options)) { in PHP_METHOD()
645 if (dbh->methods->in_transaction) { in pdo_is_in_transaction()
646 return dbh->methods->in_transaction(dbh); in pdo_is_in_transaction()
665 if (!dbh->methods->begin) { in PHP_METHOD()
671 if (dbh->methods->begin(dbh)) { in PHP_METHOD()
695 if (dbh->methods->commit(dbh)) { in PHP_METHOD()
719 if (dbh->methods->rollback(dbh)) { in PHP_METHOD()
853 if (dbh->methods->set_attribute) { in pdo_dbh_attribute_set()
854 dbh->methods->set_attribute(dbh, attr, value); in pdo_dbh_attribute_set()
912 if (!dbh->methods->set_attribute) { in pdo_dbh_attribute_set()
917 if (dbh->methods->set_attribute(dbh, attr, value)) { in pdo_dbh_attribute_set()
922 if (!dbh->methods->set_attribute) { in pdo_dbh_attribute_set()
999 if (!dbh->methods->get_attribute) { in PHP_METHOD()
1004 switch (dbh->methods->get_attribute(dbh, attr, return_value)) { in PHP_METHOD()
1039 ret = dbh->methods->doer(dbh, statement); in PHP_METHOD()
1065 if (!dbh->methods->last_id) { in PHP_METHOD()
1069 last_id = dbh->methods->last_id(dbh, name); in PHP_METHOD()
1126 if (dbh->methods->fetch_err) { in PHP_METHOD()
1127 dbh->methods->fetch_err(dbh, dbh->query_stmt, return_value); in PHP_METHOD()
1190 if (dbh->methods->preparer(dbh, statement, stmt, NULL)) { in PHP_METHOD()
1195 if (stmt->methods->executer(stmt)) { in PHP_METHOD()
1246 if (!dbh->methods->quoter) { in PHP_METHOD()
1250 quoted = dbh->methods->quoter(dbh, str, paramtype); in PHP_METHOD()
1309 if (!dbh || !dbh->methods || !dbh->methods->get_driver_methods) { in pdo_hash_methods()
1312 funcs = dbh->methods->get_driver_methods(dbh, kind); in pdo_hash_methods()
1404 if (dbh->methods && dbh->methods->get_gc) { in dbh_get_gc()
1405 dbh->methods->get_gc(dbh, gc_buffer); in dbh_get_gc()
1448 if (dbh->methods) { in dbh_free()
1449 dbh->methods->closer(dbh); in dbh_free()
1489 if (dbh->driver_data && dbh->methods && dbh->methods->rollback && pdo_is_in_transaction(dbh)) { in pdo_dbh_free_storage()
1490 dbh->methods->rollback(dbh); in pdo_dbh_free_storage()
1494 if (dbh->is_persistent && dbh->methods && dbh->methods->persistent_shutdown) { in pdo_dbh_free_storage()
1495 dbh->methods->persistent_shutdown(dbh); in pdo_dbh_free_storage()