Searched refs:sqltype (Results 1 – 4 of 4) sorted by relevance
/PHP-8.2/ext/pdo_firebird/ |
H A D | firebird_statement.c | 244 var->sqltype = SQL_VARYING | (var->sqltype & 1); in firebird_stmt_describe() 274 switch (var->sqltype & ~1) { in firebird_stmt_get_column_meta() 414 switch (var->sqltype & ~1) { in firebird_stmt_get_col() 442 switch (var->sqltype & ~1) { in firebird_stmt_get_col() 637 switch (var->sqltype & ~1) { in firebird_stmt_param_hook() 646 if (~var->sqltype & 1) { in firebird_stmt_param_hook() 723 var->sqltype = (sizeof(zend_long) == 8 ? SQL_INT64 : SQL_LONG) | (var->sqltype & 1); in firebird_stmt_param_hook() 729 var->sqltype = SQL_DOUBLE | (var->sqltype & 1); in firebird_stmt_param_hook() 737 switch (var->sqltype & ~1) { in firebird_stmt_param_hook() 750 var->sqltype = SQL_TEXT | (var->sqltype & 1); in firebird_stmt_param_hook() [all …]
|
/PHP-8.2/ext/pdo_odbc/ |
H A D | odbc_stmt.c | 35 static int pdo_odbc_sqltype_is_unicode(pdo_odbc_stmt *S, SQLSMALLINT sqltype) in pdo_odbc_sqltype_is_unicode() argument 38 switch (sqltype) { in pdo_odbc_sqltype_is_unicode() 290 SQLSMALLINT sqltype = 0, ctype = 0, scale = 0, nullable = 0; in odbc_stmt_param_hook() local 326 …rc = SQLDescribeParam(S->stmt, (SQLUSMALLINT) param->paramno+1, &sqltype, &precision, &scale, &nul… in odbc_stmt_param_hook() 332 sqltype = SQL_INTEGER; in odbc_stmt_param_hook() 335 sqltype = SQL_LONGVARBINARY; in odbc_stmt_param_hook() 338 sqltype = SQL_LONGVARCHAR; in odbc_stmt_param_hook() 348 if (sqltype == SQL_BINARY || sqltype == SQL_VARBINARY || sqltype == SQL_LONGVARBINARY) { in odbc_stmt_param_hook() 360 P->is_unicode = pdo_odbc_sqltype_is_unicode(S, sqltype); in odbc_stmt_param_hook() 391 P->paramtype, ctype, sqltype, precision, scale, in odbc_stmt_param_hook()
|
/PHP-8.2/ext/odbc/ |
H A D | php_odbc_includes.h | 206 SQLSMALLINT sqltype; member
|
H A D | php_odbc.c | 877 …rc = SQLDescribeParam(result->stmt, (SQLUSMALLINT)(i+1), &result->param_info[i].sqltype, &result->… in PHP_FUNCTION() 960 if (IS_SQL_BINARY(result->param_info[i-1].sqltype)) { in PHP_FUNCTION() 996 …ctype, result->param_info[i-1].sqltype, result->param_info[i-1].precision, result->param_info[i-1]… in PHP_FUNCTION() 1008 …ctype, result->param_info[i-1].sqltype, result->param_info[i-1].precision, result->param_info[i-1]… in PHP_FUNCTION()
|
Completed in 31 milliseconds