Skip to content

Commit b2651c2

Browse files
committed
Merge pull request neosmart#1 from fr00b0/master
Fix retrieval of int64 field values by name
2 parents ff8bbc0 + 3b334a6 commit b2651c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CppSQLite3.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ long long CppSQLite3Query::getInt64Field(int nField, long long nNullValue/*=0*/)
393393
long long CppSQLite3Query::getInt64Field(const char* szField, long long nNullValue/*=0*/)
394394
{
395395
int nField = fieldIndex(szField);
396-
return getIntField(nField, nNullValue);
396+
return getInt64Field(nField, nNullValue);
397397
}
398398

399399

0 commit comments

Comments
 (0)