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
As per SQLite documentation Whenever you create a table without specifying the WITHOUT ROWID option, you get an implicit auto increment column called rowid.
On updating either of below tables update the rowid to the maximum of that table +1. This makes updates for each object immutable.
Locations,
Structures
Tasks
The rowId will be used by P2PLibrary to identify records that should be synced
The text was updated successfully, but these errors were encountered:
As per SQLite documentation Whenever you create a table without specifying the WITHOUT ROWID option, you get an implicit auto increment column called rowid.
On updating either of below tables update the rowid to the maximum of that table +1. This makes updates for each object immutable.
The rowId will be used by P2PLibrary to identify records that should be synced
The text was updated successfully, but these errors were encountered: