Lines Matching refs:isc_status

91 	if (isc_dsql_free_statement(S->H->isc_status, &S->stmt, DSQL_drop)) {  in firebird_stmt_dtor()
123 …if ((*S->name || S->cursor_open) && isc_dsql_free_statement(H->isc_status, &S->stmt, DSQL_close)) { in firebird_stmt_execute()
142 …if (isc_dsql_execute2(H->isc_status, &H->tr, &S->stmt, PDO_FB_SQLDA_VERSION, S->in_sqlda, &S->out_… in firebird_stmt_execute()
145 } else if (isc_dsql_execute(H->isc_status, &H->tr, &S->stmt, PDO_FB_SQLDA_VERSION, S->in_sqlda)) { in firebird_stmt_execute()
159 if (isc_dsql_sql_info(H->isc_status, &S->stmt, sizeof ( info_count), in firebird_stmt_execute()
186 if (stmt->dbh->auto_commit && isc_commit_retaining(H->isc_status, &H->tr)) { in firebird_stmt_execute()
220 if (isc_dsql_fetch(H->isc_status, &S->stmt, PDO_FB_SQLDA_VERSION, &S->out_sqlda)) { in firebird_stmt_fetch()
221 if (H->isc_status[0] && H->isc_status[1]) { in firebird_stmt_fetch()
310 if (isc_open_blob(H->isc_status, &H->db, &H->tr, &blobh, blob_id)) { in firebird_fetch_blob()
315 if (isc_blob_info(H->isc_status, &blobh, 1, const_cast(&bl_item), in firebird_fetch_blob()
362 stat = isc_get_segment(H->isc_status, &blobh, &seg_len, chunk_size, ZSTR_VAL(str) + cur_len); in firebird_fetch_blob()
368 if (H->isc_status[0] == 1 && (stat != 0 && stat != isc_segstr_eof && stat != isc_segment)) { in firebird_fetch_blob()
376 if (isc_close_blob(H->isc_status, &blobh)) { in firebird_fetch_blob()
518 if (isc_create_blob(H->isc_status, &H->db, &H->tr, &h, blob_id)) { in firebird_bind_blob()
531 if (isc_put_segment(H->isc_status, &h, chunk_size, &Z_STRVAL(data)[put_cnt])) { in firebird_bind_blob()
543 if (isc_close_blob(H->isc_status, &h)) { in firebird_bind_blob()
806 if (isc_dsql_set_cursor_name(S->H->isc_status, &S->stmt, Z_STRVAL_P(val),0)) { in firebird_stmt_set_attribute()
841 …if ((*S->name || S->cursor_open) && isc_dsql_free_statement(S->H->isc_status, &S->stmt, DSQL_close… in firebird_stmt_cursor_closer()