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
val TABLE = "'transaction'" //notice the single quote escaping, because "transaction" is a sqlite reserved keyword
val QUERY_DELETE_ALL = DeleteQuery.builder().table(TABLE).build()
storIo.delete()
.byQuery(QUERY_DELETE_ALL)
.prepare()
.executeAsBlocking()
I had to rename the table to be "transactions" to workaround the issue.
The text was updated successfully, but these errors were encountered:
I had to rename the table to be "transactions" to workaround the issue.
The text was updated successfully, but these errors were encountered: