coltype          1032 ext/mssql/php_mssql.c 					res_length = dbconvert(NULL,coltype(offset),dbdata(mssql_ptr->link,offset), res_length, SQLCHAR,res_buf,-1);
coltype          1050 ext/mssql/php_mssql.c 				php_error_docref(NULL TSRMLS_CC, E_WARNING, "column %d has unknown data type (%d)", offset, coltype(offset));
coltype          1088 ext/mssql/php_mssql.c 	else if  (dbwillconvert(coltype(offset),SQLCHAR)) {
coltype          1112 ext/mssql/php_mssql.c 			res_length = dbconvert(NULL,coltype(offset),dbdata(mssql_ptr->link,offset), res_length, SQLCHAR, res_buf, -1);
coltype          1130 ext/mssql/php_mssql.c 		php_error_docref(NULL TSRMLS_CC, E_WARNING, "column %d has unknown data type (%d)", offset, coltype(offset));
coltype          1241 ext/mssql/php_mssql.c 			result->fields[i].type = coltype(i+1);
coltype            88 ext/mssql/php_mssql.h #define anyintcol(j) (coltype(j)==SQLINT4?intcol(j):(coltype(j)==SQLINT2?smallintcol(j):tinyintcol(j)))
coltype           966 ext/odbc/php_odbc.c 				NULL, 0, NULL, &result->values[i].coltype);
coltype           972 ext/odbc/php_odbc.c 		switch(result->values[i].coltype) {
coltype          1012 ext/odbc/php_odbc.c 				if (result->values[i].coltype == SQL_TIMESTAMP) {
coltype          1748 ext/odbc/php_odbc.c 		switch(result->values[i].coltype) {
coltype          1763 ext/odbc/php_odbc.c 				if (IS_SQL_LONG(result->values[i].coltype) && result->longreadlen <= 0) {
coltype          1905 ext/odbc/php_odbc.c 		switch(result->values[i].coltype) {
coltype          1919 ext/odbc/php_odbc.c 				if (IS_SQL_LONG(result->values[i].coltype) && result->longreadlen <= 0) {
coltype          2126 ext/odbc/php_odbc.c 	switch(result->values[field_ind].coltype) {
coltype          2140 ext/odbc/php_odbc.c 			if (IS_SQL_LONG(result->values[field_ind].coltype)) {
coltype          2177 ext/odbc/php_odbc.c 			if ((result->values[field_ind].coltype == SQL_LONGVARCHAR)
coltype          2179 ext/odbc/php_odbc.c 			    || (result->values[field_ind].coltype == SQL_WLONGVARCHAR)
coltype          2287 ext/odbc/php_odbc.c 			switch(result->values[i].coltype) {
coltype          2300 ext/odbc/php_odbc.c 					if (IS_SQL_LONG(result->values[i].coltype) && 
coltype           233 ext/odbc/php_odbc_includes.h 	SQLLEN coltype;
coltype           222 ext/pdo_dblib/dblib_stmt.c 	int coltype;
coltype           226 ext/pdo_dblib/dblib_stmt.c 	coltype = dbcoltype(H->link, colno+1);
coltype           235 ext/pdo_dblib/dblib_stmt.c 	switch (coltype) {
coltype           252 ext/pdo_dblib/dblib_stmt.c 			dbconvert(NULL, coltype, *ptr, *len, SQLFLT8, (LPBYTE)&money_value, 8);
coltype           268 ext/pdo_dblib/dblib_stmt.c 			if (dbwillconvert(coltype, SQLCHAR)) {
coltype           271 ext/pdo_dblib/dblib_stmt.c 				*len = dbconvert(NULL, coltype, *ptr, *len, SQLCHAR, tmp_ptr, -1);
coltype           559 ext/pdo_odbc/odbc_stmt.c 			&S->cols[colno].coltype, &colsize, NULL, NULL);
coltype           583 ext/pdo_odbc/odbc_stmt.c 	S->cols[colno].is_unicode = pdo_odbc_sqltype_is_unicode(S, S->cols[colno].coltype);
coltype           140 ext/pdo_odbc/php_pdo_odbc_int.h 	SWORD	coltype;