Lines Matching refs:column_count
197 stmt->columns = ecalloc(stmt->column_count, sizeof(struct pdo_column_data)); in pdo_stmt_describe_columns()
199 for (col = 0; col < stmt->column_count; col++) { in pdo_stmt_describe_columns()
341 for (i = 0; i < stmt->column_count; i++) { in really_register_bound_param()
789 if (!make_callable_ex(stmt, &stmt->fetch.func.function, fci, fcc, stmt->column_count)) { in do_fetch_func_prepare()
792 stmt->fetch.func.values = safe_emalloc(sizeof(zval), stmt->column_count, 0); in do_fetch_func_prepare()
872 zend_hash_init(Z_ARRVAL_P(return_value), stmt->column_count, NULL, ZVAL_PTR_DTOR, 0);; in do_fetch()
879 if (stmt->column_count != 2) { in do_fetch()
889 if (colno >= 0 && colno < stmt->column_count) { in do_fetch()
1006 i = stmt->column_count; /* no more data to fetch */ in do_fetch()
1012 for (idx = 0; i < stmt->column_count; i++, idx++) { in do_fetch()
1786 RETURN_LONG(stmt->column_count); in PHP_METHOD()
2021 for (i = 0; i < stmt->column_count; i++) { in pdo_stmt_do_next_rowset()
2028 stmt->column_count = 0; in pdo_stmt_do_next_rowset()
2331 for (i = 0; i < stmt->column_count; i++) { in php_pdo_free_statement()
2498 if (Z_LVAL_P(member) >= 0 && Z_LVAL_P(member) < stmt->column_count) { in row_prop_read()
2503 if (lval >= 0 && lval < stmt->column_count) { in row_prop_read()
2510 for (colno = 0; colno < stmt->column_count; colno++) { in row_prop_read()
2552 return Z_LVAL_P(member) >= 0 && Z_LVAL_P(member) < stmt->column_count; in row_prop_exists()
2555 return lval >=0 && lval < stmt->column_count; in row_prop_exists()
2563 for (colno = 0; colno < stmt->column_count; colno++) { in row_prop_exists()
2609 for (i = 0; i < stmt->column_count; i++) { in row_get_properties()