mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-23 16:48:06 +02:00
added Token::asInteger64(); ODBC tests fix for case-sensitive DB
This commit is contained in:
@@ -576,7 +576,7 @@ void Parser::readValue(const Token* token)
|
||||
if ( _handler != NULL )
|
||||
{
|
||||
#if defined(POCO_HAVE_INT64)
|
||||
Int64 value = token->asInteger();
|
||||
Int64 value = token->asInteger64();
|
||||
// if number is 32-bit, then handle as such
|
||||
if ( value > std::numeric_limits<int>::max()
|
||||
|| value < std::numeric_limits<int>::min() )
|
||||
|
Reference in New Issue
Block a user