Searched refs:sqltype (Results 1 – 4 of 4) sorted by relevance
/PHP-8.1/ext/pdo_firebird/ |
H A D | firebird_statement.c | 266 switch (var->sqltype & ~1) { in firebird_stmt_get_column_meta() 406 switch (var->sqltype & ~1) { in firebird_stmt_get_col() 421 if ((var->sqltype & ~1) == SQL_DOUBLE) { in firebird_stmt_get_col() 434 switch (var->sqltype & ~1) { in firebird_stmt_get_col() 629 switch (var->sqltype & ~1) { in firebird_stmt_param_hook() 638 if (~var->sqltype & 1) { in firebird_stmt_param_hook() 715 var->sqltype = (sizeof(zend_long) == 8 ? SQL_INT64 : SQL_LONG) | (var->sqltype & 1); in firebird_stmt_param_hook() 721 var->sqltype = SQL_DOUBLE | (var->sqltype & 1); in firebird_stmt_param_hook() 729 switch (var->sqltype & ~1) { in firebird_stmt_param_hook() 742 var->sqltype = SQL_TEXT | (var->sqltype & 1); in firebird_stmt_param_hook() [all …]
|
/PHP-8.1/ext/pdo_odbc/ |
H A D | odbc_stmt.c | 35 static int pdo_odbc_sqltype_is_unicode(pdo_odbc_stmt *S, SWORD sqltype) in pdo_odbc_sqltype_is_unicode() argument 38 switch (sqltype) { in pdo_odbc_sqltype_is_unicode() 281 SWORD sqltype = 0, ctype = 0, scale = 0, nullable = 0; in odbc_stmt_param_hook() local 317 …rc = SQLDescribeParam(S->stmt, (SQLUSMALLINT) param->paramno+1, &sqltype, &precision, &scale, &nul… in odbc_stmt_param_hook() 323 sqltype = SQL_INTEGER; in odbc_stmt_param_hook() 326 sqltype = SQL_LONGVARBINARY; in odbc_stmt_param_hook() 329 sqltype = SQL_LONGVARCHAR; in odbc_stmt_param_hook() 339 if (sqltype == SQL_BINARY || sqltype == SQL_VARBINARY || sqltype == SQL_LONGVARBINARY) { in odbc_stmt_param_hook() 351 P->is_unicode = pdo_odbc_sqltype_is_unicode(S, sqltype); in odbc_stmt_param_hook() 382 P->paramtype, ctype, sqltype, precision, scale, in odbc_stmt_param_hook()
|
/PHP-8.1/ext/odbc/ |
H A D | php_odbc_includes.h | 200 SQLSMALLINT sqltype; member
|
H A D | php_odbc.c | 949 …rc = SQLDescribeParam(result->stmt, (SQLUSMALLINT)(i+1), &result->param_info[i].sqltype, &result->… in PHP_FUNCTION() 1032 if (IS_SQL_BINARY(result->param_info[i-1].sqltype)) { in PHP_FUNCTION() 1068 …ctype, result->param_info[i-1].sqltype, result->param_info[i-1].precision, result->param_info[i-1]… in PHP_FUNCTION() 1080 …ctype, result->param_info[i-1].sqltype, result->param_info[i-1].precision, result->param_info[i-1]… in PHP_FUNCTION()
|
Completed in 19 milliseconds