Home
last modified time | relevance | path

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

/PHP-5.3/ext/oci8/tests/
H A Dfield_funcs2.phpt32 foreach ($t as $colname => $type) {
33 $stmt .= "$colname $type,\n";
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_number.phpt33 function check_col($c, $colname, $id)
35 $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_sqltnum.phpt29 function check_col($c, $colname, $id)
31 $s = oci_parse($c, "select $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.phpt46 function check_col($c, $colname, $id)
48 $s = oci_parse($c, "select $colname from bind_misccoltypes_tab where id = :id");
/PHP-5.3/ext/pdo_odbc/
H A Dphp_pdo_odbc_int.h141 char colname[128]; member
H A Dodbc_stmt.c551 rc = SQLDescribeCol(S->stmt, colno+1, S->cols[colno].colname, in odbc_stmt_describe()
552 sizeof(S->cols[colno].colname)-1, &colnamelen, in odbc_stmt_describe()
576 col->name = estrdup(S->cols[colno].colname); in odbc_stmt_describe()
/PHP-5.3/ext/pdo_oci/
H A Doci_statement.c502 text *colname; in oci_stmt_describe() local
529 (param, OCI_DTYPE_PARAM, &colname, &namelen, OCI_ATTR_NAME, S->err)); in oci_stmt_describe()
534 col->name = estrndup((char *)colname, namelen); in oci_stmt_describe()
/PHP-5.3/ext/sqlite/
H A Dsqlite.c2041 char *colname = estrdup((char *)colnames[i]); in PHP_FUNCTION() local
2044 php_sqlite_strtoupper(colname); in PHP_FUNCTION()
2046 php_sqlite_strtolower(colname); in PHP_FUNCTION()
2049 …add_assoc_string(return_value, colname, colnames[ncols + i] ? (char *)colnames[ncols + i] : "", 1); in PHP_FUNCTION()
2050 efree(colname); in PHP_FUNCTION()
/PHP-5.3/ext/oci8/
H A Doci8_statement.c411 text *colname; in php_oci_statement_execute() local
582 …ement->errcode, OCIAttrGet, ((dvoid *)param, OCI_DTYPE_PARAM, (dvoid **)&colname, (ub4 *)&outcol->… in php_oci_statement_execute()
592 outcol->name = estrndup((char*) colname, outcol->name_len); in php_oci_statement_execute()

Completed in 34 milliseconds