Home
last modified time | relevance | path

Searched refs:colname (Results 1 – 12 of 12) sorted by relevance

/PHP-8.2/ext/spl/tests/
H A Dgh10519.phpt22 public function getCols(string $colname): array
24 return array_column($this->getArrayCopy(), $colname);
/PHP-8.2/ext/oci8/tests/
H A Dfield_funcs2.phpt32 foreach ($t as $colname => $type) {
33 $stmt .= "$colname $type,\n";
H A Dbind_number.phpt28 function check_col($c, $colname, $id)
30 $s = oci_parse($c, "select $colname from bind_number_tab where id = :id");
H A Dbind_sqltchr_1.phpt25 function check_col($c, $colname, $id)
27 $s = oci_parse($c, "select $colname from bind_sqltchr_tab where id = :id");
H A Dbind_misccoltypes_errs.phpt37 function check_col($c, $colname, $id)
39 $s = oci_parse($c, "select $colname from bind_misccoltypes_errs_tab where id = :id");
H A Dbind_sqltnum.phpt31 function check_col($c, $colname, $id)
33 $s = oci_parse($c, "select dump($colname) from bind_sqltnum_tab where id = :id");
H A Dbind_sqltint.phpt25 function check_col($c, $colname, $id)
27 $s = oci_parse($c, "select $colname from bind_sqltint_tab where id = :id");
H A Dbind_misccoltypes.phpt45 function check_col($c, $colname, $id)
47 $s = oci_parse($c, "select $colname from bind_misccoltypes_tab where id = :id");
/PHP-8.2/ext/pdo_odbc/
H A Dphp_pdo_odbc_int.h137 char colname[128]; member
H A Dodbc_stmt.c570 rc = SQLDescribeCol(S->stmt, colno+1, (SQLCHAR *) S->cols[colno].colname, in odbc_stmt_describe()
571 sizeof(S->cols[colno].colname)-1, &colnamelen, in odbc_stmt_describe()
612 col->name = zend_string_init(S->cols[colno].colname, colnamelen, 0); in odbc_stmt_describe()
/PHP-8.2/ext/pdo_oci/
H A Doci_statement.c517 text *colname; in oci_stmt_describe() local
540 (param, OCI_DTYPE_PARAM, &colname, &namelen, OCI_ATTR_NAME, S->err)); in oci_stmt_describe()
544 col->name = zend_string_init((char *)colname, namelen, 0); in oci_stmt_describe()
/PHP-8.2/ext/oci8/
H A Doci8_statement.c494 text *colname; in php_oci_statement_execute() local
677 …PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)param, OCI_DTYPE_PARAM, (dvoid **)&colname, (… in php_oci_statement_execute()
688 memcpy(outcol->name, colname, outcol->name_len); in php_oci_statement_execute()

Completed in 24 milliseconds