Lines Matching refs:out_sqlda
176 php_firebird_free_sqlda(&S->out_sqlda); in pdo_firebird_stmt_dtor()
200 if (S->out_sqlda.sqld) { in pdo_firebird_stmt_execute()
202 for (i = 0; i < S->out_sqlda.sqld; i++) { in pdo_firebird_stmt_execute()
203 XSQLVAR *var = &S->out_sqlda.sqlvar[i]; in pdo_firebird_stmt_execute()
213 …dsql_execute2(H->isc_status, &H->tr, &S->stmt, PDO_FB_SQLDA_VERSION, S->in_sqlda, &S->out_sqlda)) { in pdo_firebird_stmt_execute()
261 S->cursor_open = S->out_sqlda.sqln && (S->statement_type != isc_info_sql_stmt_exec_procedure); in pdo_firebird_stmt_execute()
262 S->exhausted = !S->out_sqlda.sqln; /* There are data to fetch */ in pdo_firebird_stmt_execute()
290 if (isc_dsql_fetch(H->isc_status, &S->stmt, PDO_FB_SQLDA_VERSION, &S->out_sqlda)) { in pdo_firebird_stmt_fetch()
309 XSQLVAR *var = &S->out_sqlda.sqlvar[colno]; in pdo_firebird_stmt_describe()
338 XSQLVAR *var = &S->out_sqlda.sqlvar[colno]; in pdo_firebird_stmt_get_column_meta()
458 XSQLVAR const *var = &S->out_sqlda.sqlvar[colno]; in pdo_firebird_stmt_get_col()
632 XSQLDA *sqlda = param->is_param ? S->in_sqlda : &S->out_sqlda; in pdo_firebird_stmt_param_hook()