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()
809 if (!make_callable_ex(stmt, stmt->fetch.func.function, fci, fcc, stmt->column_count TSRMLS_CC)) { in do_fetch_func_prepare()
812 stmt->fetch.func.values = safe_emalloc(sizeof(zval*), stmt->column_count, 0); in do_fetch_func_prepare()
888 zend_hash_init(return_value->value.ht, stmt->column_count, NULL, ZVAL_PTR_DTOR, 0); in do_fetch()
896 if (stmt->column_count != 2) { in do_fetch()
906 if (colno >= 0 && colno < stmt->column_count) { in do_fetch()
1025 i = stmt->column_count; /* no more data to fetch */ in do_fetch()
1031 for (idx = 0; i < stmt->column_count; i++, idx++) { in do_fetch()
1809 RETURN_LONG(stmt->column_count); in PHP_METHOD()
2052 for (i = 0; i < stmt->column_count; i++) { in pdo_stmt_do_next_rowset()
2057 stmt->column_count = 0; in pdo_stmt_do_next_rowset()
2373 for (i = 0; i < stmt->column_count; i++) { in free_statement()
2569 if (Z_LVAL_P(member) >= 0 && Z_LVAL_P(member) < stmt->column_count) { in row_prop_read()
2576 for (colno = 0; colno < stmt->column_count; colno++) { in row_prop_read()
2619 return Z_LVAL_P(member) >= 0 && Z_LVAL_P(member) < stmt->column_count; in row_prop_exists()
2625 for (colno = 0; colno < stmt->column_count; colno++) { in row_prop_exists()
2671 for (i = 0; i < stmt->column_count; i++) { in row_get_properties()