Lines Matching refs:H

89 	if (isc_dsql_free_statement(S->H->isc_status, &S->stmt, DSQL_drop)) {  in pdo_firebird_stmt_dtor()
114 pdo_firebird_db_handle *H = S->H; in pdo_firebird_stmt_execute() local
121 …if ((*S->name || S->cursor_open) && isc_dsql_free_statement(H->isc_status, &S->stmt, DSQL_close)) { in pdo_firebird_stmt_execute()
140 …if (isc_dsql_execute2(H->isc_status, &H->tr, &S->stmt, PDO_FB_SQLDA_VERSION, S->in_sqlda, &S->out_… in pdo_firebird_stmt_execute()
143 } else if (isc_dsql_execute(H->isc_status, &H->tr, &S->stmt, PDO_FB_SQLDA_VERSION, S->in_sqlda)) { in pdo_firebird_stmt_execute()
157 if (isc_dsql_sql_info(H->isc_status, &S->stmt, sizeof ( info_count), in pdo_firebird_stmt_execute()
183 …if (stmt->dbh->auto_commit && !S->H->in_manually_txn && !php_firebird_commit_transaction(stmt->dbh… in pdo_firebird_stmt_execute()
206 pdo_firebird_db_handle *H = S->H; in pdo_firebird_stmt_fetch() local
217 if (isc_dsql_fetch(H->isc_status, &S->stmt, PDO_FB_SQLDA_VERSION, &S->out_sqlda)) { in pdo_firebird_stmt_fetch()
218 if (H->isc_status[0] && H->isc_status[1]) { in pdo_firebird_stmt_fetch()
243 colname_len = (S->H->fetch_table_names && var->relname_length) in pdo_firebird_stmt_describe()
299 pdo_firebird_db_handle *H = S->H; in php_firebird_fetch_blob() local
307 if (isc_open_blob(H->isc_status, &H->db, &H->tr, &blobh, blob_id)) { in php_firebird_fetch_blob()
312 if (isc_blob_info(H->isc_status, &blobh, 1, const_cast(&bl_item), in php_firebird_fetch_blob()
360 stat = isc_get_segment(H->isc_status, &blobh, &seg_len, chunk_size, ZSTR_VAL(str) + cur_len); in php_firebird_fetch_blob()
366 if (H->isc_status[0] == 1 && (stat != 0 && stat != isc_segstr_eof && stat != isc_segment)) { in php_firebird_fetch_blob()
375 if (isc_close_blob(H->isc_status, &blobh)) { in php_firebird_fetch_blob()
479 fmt = S->H->date_format ? S->H->date_format : PDO_FB_DEF_DATE_FMT; in pdo_firebird_stmt_get_col()
483 fmt = S->H->time_format ? S->H->time_format : PDO_FB_DEF_TIME_FMT; in pdo_firebird_stmt_get_col()
490 fmt = S->H->timestamp_format ? S->H->timestamp_format : PDO_FB_DEF_TIMESTAMP_FMT; in pdo_firebird_stmt_get_col()
510 pdo_firebird_db_handle *H = S->H; in php_firebird_bind_blob() local
517 if (isc_create_blob(H->isc_status, &H->db, &H->tr, &h, blob_id)) { in php_firebird_bind_blob()
530 if (isc_put_segment(H->isc_status, &h, chunk_size, &Z_STRVAL(data)[put_cnt])) { in php_firebird_bind_blob()
542 if (isc_close_blob(H->isc_status, &h)) { in php_firebird_bind_blob()
811 if (isc_dsql_set_cursor_name(S->H->isc_status, &S->stmt, Z_STRVAL_P(val),0)) { in pdo_firebird_stmt_set_attribute()
846 …if ((*S->name || S->cursor_open) && isc_dsql_free_statement(S->H->isc_status, &S->stmt, DSQL_close… in pdo_firebird_stmt_cursor_closer()