Searched refs:coltype (Results 1 - 7 of 7) sorted by relevance
| /PHP_5_5/ext/mssql/ |
| H A D | php_mssql.c | 1027 res_length = dbconvert(NULL,coltype(offset),dbdata(mssql_ptr->link,offset), res_length, SQLCHAR,res_buf,-1); 1045 php_error_docref(NULL TSRMLS_CC, E_WARNING, "column %d has unknown data type (%d)", offset, coltype(offset)); 1083 else if (dbwillconvert(coltype(offset),SQLCHAR)) { 1107 res_length = dbconvert(NULL,coltype(offset),dbdata(mssql_ptr->link,offset), res_length, SQLCHAR, res_buf, -1); 1125 php_error_docref(NULL TSRMLS_CC, E_WARNING, "column %d has unknown data type (%d)", offset, coltype(offset)); 1236 result->fields[i].type = coltype(i+1);
|
| H A D | php_mssql.h | 84 #define coltype(j) dbcoltype(mssql_ptr->link,j) macro 88 #define anyintcol(j) (coltype(j)==SQLINT4?intcol(j):(coltype(j)==SQLINT2?smallintcol(j):tinyintcol(j)))
|
| /PHP_5_5/ext/odbc/ |
| H A D | php_odbc.c | 958 NULL, 0, NULL, &result->values[i].coltype); 964 switch(result->values[i].coltype) { 985 if (result->values[i].coltype == SQL_TIMESTAMP) { 1716 switch(result->values[i].coltype) { 1728 if (IS_SQL_LONG(result->values[i].coltype) && result->longreadlen <= 0) { 1870 switch(result->values[i].coltype) { 1880 if (IS_SQL_LONG(result->values[i].coltype) && result->longreadlen <= 0) { 2087 switch(result->values[field_ind].coltype) { 2098 if (IS_SQL_LONG(result->values[field_ind].coltype)) { 2135 if (result->values[field_ind].coltype [all...] |
| H A D | php_odbc_includes.h | 238 SQLLEN coltype; member in struct:odbc_result_value
|
| /PHP_5_5/ext/pdo_dblib/ |
| H A D | dblib_stmt.c | 194 int coltype; local 198 coltype = dbcoltype(H->link, colno+1); 207 switch (coltype) { 223 dbconvert(NULL, coltype, *ptr, *len, SQLFLT8, (LPBYTE)&money_value, 8); 247 if (dbwillconvert(coltype, SQLCHAR)) { 250 *len = dbconvert(NULL, coltype, *ptr, *len, SQLCHAR, tmp_ptr, -1);
|
| /PHP_5_5/ext/pdo_odbc/ |
| H A D | odbc_stmt.c | 553 &S->cols[colno].coltype, &colsize, NULL, NULL); 577 S->cols[colno].is_unicode = pdo_odbc_sqltype_is_unicode(S, S->cols[colno].coltype);
|
| H A D | php_pdo_odbc_int.h | 140 SWORD coltype; member in struct:__anon165
|
Completed in 28 milliseconds