Lines Matching refs:methods

149 	if (dbh->methods->fetch_err) {  in pdo_handle_error()
155 dbh->methods->fetch_err(dbh, stmt, &info); in pdo_handle_error()
325 if (pdbh->methods->check_liveness && FAILURE == (pdbh->methods->check_liveness)(pdbh)) { in PHP_METHOD()
571 if (dbh->methods->preparer(dbh, statement, stmt, options)) { in PHP_METHOD()
587 if (dbh->methods->in_transaction) { in pdo_is_in_transaction()
588 return dbh->methods->in_transaction(dbh); in pdo_is_in_transaction()
607 if (!dbh->methods->begin) { in PHP_METHOD()
613 if (dbh->methods->begin(dbh)) { in PHP_METHOD()
637 if (dbh->methods->commit(dbh)) { in PHP_METHOD()
661 if (dbh->methods->rollback(dbh)) { in PHP_METHOD()
795 if (dbh->methods->set_attribute) { in pdo_dbh_attribute_set()
796 dbh->methods->set_attribute(dbh, attr, value); in pdo_dbh_attribute_set()
854 if (!dbh->methods->set_attribute) { in pdo_dbh_attribute_set()
859 if (dbh->methods->set_attribute(dbh, attr, value)) { in pdo_dbh_attribute_set()
864 if (!dbh->methods->set_attribute) { in pdo_dbh_attribute_set()
936 if (!dbh->methods->get_attribute) { in PHP_METHOD()
941 switch (dbh->methods->get_attribute(dbh, attr, return_value)) { in PHP_METHOD()
976 ret = dbh->methods->doer(dbh, statement); in PHP_METHOD()
1002 if (!dbh->methods->last_id) { in PHP_METHOD()
1006 last_id = dbh->methods->last_id(dbh, name); in PHP_METHOD()
1063 if (dbh->methods->fetch_err) { in PHP_METHOD()
1064 dbh->methods->fetch_err(dbh, dbh->query_stmt, return_value); in PHP_METHOD()
1127 if (dbh->methods->preparer(dbh, statement, stmt, NULL)) { in PHP_METHOD()
1132 if (stmt->methods->executer(stmt)) { in PHP_METHOD()
1179 if (!dbh->methods->quoter) { in PHP_METHOD()
1183 quoted = dbh->methods->quoter(dbh, str, paramtype); in PHP_METHOD()
1236 if (!dbh || !dbh->methods || !dbh->methods->get_driver_methods) { in pdo_hash_methods()
1239 funcs = dbh->methods->get_driver_methods(dbh, kind); in pdo_hash_methods()
1327 if (dbh->methods && dbh->methods->get_gc) { in dbh_get_gc()
1328 dbh->methods->get_gc(dbh, gc_buffer); in dbh_get_gc()
1455 if (dbh->methods) { in dbh_free()
1456 dbh->methods->closer(dbh); in dbh_free()
1490 if (dbh->driver_data && dbh->methods && dbh->methods->rollback && pdo_is_in_transaction(dbh)) { in pdo_dbh_free_storage()
1491 dbh->methods->rollback(dbh); in pdo_dbh_free_storage()
1495 if (dbh->is_persistent && dbh->methods && dbh->methods->persistent_shutdown) { in pdo_dbh_free_storage()
1496 dbh->methods->persistent_shutdown(dbh); in pdo_dbh_free_storage()