Lines Matching refs:column_count

209 	stmt->columns = ecalloc(stmt->column_count, sizeof(struct pdo_column_data));  in pdo_stmt_describe_columns()
211 for (col = 0; col < stmt->column_count; col++) { in pdo_stmt_describe_columns()
345 for (i = 0; i < stmt->column_count; i++) { in really_register_bound_param()
821 if (!make_callable_ex(stmt, stmt->fetch.func.function, fci, fcc, stmt->column_count TSRMLS_CC)) { in do_fetch_func_prepare()
824 stmt->fetch.func.values = safe_emalloc(sizeof(zval*), stmt->column_count, 0); in do_fetch_func_prepare()
900 zend_hash_init(return_value->value.ht, stmt->column_count, NULL, ZVAL_PTR_DTOR, 0); in do_fetch()
908 if (stmt->column_count != 2) { in do_fetch()
918 if (colno >= 0 && colno < stmt->column_count) { in do_fetch()
1037 i = stmt->column_count; /* no more data to fetch */ in do_fetch()
1043 for (idx = 0; i < stmt->column_count; i++, idx++) { in do_fetch()
1839 RETURN_LONG(stmt->column_count); in PHP_METHOD()
2082 for (i = 0; i < stmt->column_count; i++) { in pdo_stmt_do_next_rowset()
2087 stmt->column_count = 0; in pdo_stmt_do_next_rowset()
2416 for (i = 0; i < stmt->column_count; i++) { in free_statement()
2615 if (Z_LVAL_P(member) >= 0 && Z_LVAL_P(member) < stmt->column_count) { in row_prop_or_dim_read()
2622 for (colno = 0; colno < stmt->column_count; colno++) { in row_prop_or_dim_read()
2655 return Z_LVAL_P(member) >= 0 && Z_LVAL_P(member) < stmt->column_count; in row_prop_or_dim_exists()
2661 for (colno = 0; colno < stmt->column_count; colno++) { in row_prop_or_dim_exists()
2686 for (i = 0; i < stmt->column_count; i++) { in row_get_properties()