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()
391 if (pdbh->methods->check_liveness && FAILURE == (pdbh->methods->check_liveness)(pdbh)) { in internal_construct()
627 if (dbh->methods->preparer(dbh, statement, stmt, options)) { in PHP_METHOD()
647 if (dbh->methods->in_transaction) { in pdo_is_in_transaction()
648 return dbh->methods->in_transaction(dbh); in pdo_is_in_transaction()
667 if (!dbh->methods->begin) { in PHP_METHOD()
673 if (dbh->methods->begin(dbh)) { in PHP_METHOD()
697 if (dbh->methods->commit(dbh)) { in PHP_METHOD()
721 if (dbh->methods->rollback(dbh)) { in PHP_METHOD()
855 if (dbh->methods->set_attribute) { in pdo_dbh_attribute_set()
856 dbh->methods->set_attribute(dbh, attr, value); in pdo_dbh_attribute_set()
914 if (!dbh->methods->set_attribute) { in pdo_dbh_attribute_set()
919 if (dbh->methods->set_attribute(dbh, attr, value)) { in pdo_dbh_attribute_set()
924 if (!dbh->methods->set_attribute) { in pdo_dbh_attribute_set()
1001 if (!dbh->methods->get_attribute) { in PHP_METHOD()
1006 switch (dbh->methods->get_attribute(dbh, attr, return_value)) { in PHP_METHOD()
1041 ret = dbh->methods->doer(dbh, statement); in PHP_METHOD()
1067 if (!dbh->methods->last_id) { in PHP_METHOD()
1071 last_id = dbh->methods->last_id(dbh, name); in PHP_METHOD()
1128 if (dbh->methods->fetch_err) { in PHP_METHOD()
1129 dbh->methods->fetch_err(dbh, dbh->query_stmt, return_value); in PHP_METHOD()
1192 if (dbh->methods->preparer(dbh, statement, stmt, NULL)) { in PHP_METHOD()
1197 if (stmt->methods->executer(stmt)) { in PHP_METHOD()
1248 if (!dbh->methods->quoter) { in PHP_METHOD()
1252 quoted = dbh->methods->quoter(dbh, str, paramtype); in PHP_METHOD()
1311 if (!dbh || !dbh->methods || !dbh->methods->get_driver_methods) { in pdo_hash_methods()
1314 funcs = dbh->methods->get_driver_methods(dbh, kind); in pdo_hash_methods()
1405 if (dbh->methods && dbh->methods->get_gc) { in dbh_get_gc()
1406 dbh->methods->get_gc(dbh, gc_buffer); in dbh_get_gc()
1449 if (dbh->methods) { in dbh_free()
1450 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()