Skip to content

Commit

Permalink
GetInt => GetInt64 to support Integer better
Browse files Browse the repository at this point in the history
  • Loading branch information
guanlisheng committed Dec 11, 2024
1 parent 9979a77 commit 912745b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sqlite3table.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ class wxSQLite3TableLongColumn : public wxSQLite3TableColumn
else
m_nullValues.Add(1);

m_Array.Add(resultSet.GetInt(columnIndex));
m_Array.Add(resultSet.GetInt64(columnIndex).GetValue());
}
virtual void AddValue(long value)
{
Expand Down

0 comments on commit 912745b

Please sign in to comment.