You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
origin code:
case SQLITE_INTEGER: row.push_back(field_type(sqlite3_column_int(stmt, i), ::sqlite3_column_name(stmt_, i)));
here sqlite3_column_int should change to sqlite3_column_int64, or we'll get wrong value if value > 2G row.push_back(field_type(sqlite3_column_int64(stmt, i), ::sqlite3_column_name(stmt_, i)));
The text was updated successfully, but these errors were encountered:
origin code:
case SQLITE_INTEGER:
row.push_back(field_type(sqlite3_column_int(stmt, i), ::sqlite3_column_name(stmt_, i)));
here sqlite3_column_int should change to sqlite3_column_int64, or we'll get wrong value if value > 2G
row.push_back(field_type(sqlite3_column_int64(stmt, i), ::sqlite3_column_name(stmt_, i)));
The text was updated successfully, but these errors were encountered: