Searched refs:colname (Results 1 – 11 of 11) sorted by relevance
/PHP-5.4/ext/oci8/tests/ |
H A D | field_funcs2.phpt | 32 foreach ($t as $colname => $type) { 33 $stmt .= "$colname $type,\n";
|
H A D | bind_misccoltypes_errs.phpt | 37 function check_col($c, $colname, $id) 39 $s = oci_parse($c, "select $colname from bind_misccoltypes_errs_tab where id = :id");
|
H A D | bind_number.phpt | 33 function check_col($c, $colname, $id) 35 $s = oci_parse($c, "select $colname from bind_number_tab where id = :id");
|
H A D | bind_sqltchr_1.phpt | 25 function check_col($c, $colname, $id) 27 $s = oci_parse($c, "select $colname from bind_sqltchr_tab where id = :id");
|
H A D | bind_sqltnum.phpt | 29 function check_col($c, $colname, $id) 31 $s = oci_parse($c, "select $colname from bind_sqltnum_tab where id = :id");
|
H A D | bind_sqltint.phpt | 25 function check_col($c, $colname, $id) 27 $s = oci_parse($c, "select $colname from bind_sqltint_tab where id = :id");
|
H A D | bind_misccoltypes.phpt | 46 function check_col($c, $colname, $id) 48 $s = oci_parse($c, "select $colname from bind_misccoltypes_tab where id = :id");
|
/PHP-5.4/ext/pdo_odbc/ |
H A D | php_pdo_odbc_int.h | 141 char colname[128]; member
|
H A D | odbc_stmt.c | 557 rc = SQLDescribeCol(S->stmt, colno+1, S->cols[colno].colname, in odbc_stmt_describe() 558 sizeof(S->cols[colno].colname)-1, &colnamelen, in odbc_stmt_describe() 582 col->name = estrdup(S->cols[colno].colname); in odbc_stmt_describe()
|
/PHP-5.4/ext/pdo_oci/ |
H A D | oci_statement.c | 508 text *colname; in oci_stmt_describe() local 535 (param, OCI_DTYPE_PARAM, &colname, &namelen, OCI_ATTR_NAME, S->err)); in oci_stmt_describe() 540 col->name = estrndup((char *)colname, namelen); in oci_stmt_describe()
|
/PHP-5.4/ext/oci8/ |
H A D | oci8_statement.c | 411 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 27 milliseconds