in sqldelight, is there any equivalent of room ```...
# squarelibraries
m
in sqldelight, is there any equivalent of room
Copy code
roomDatabase.invalidationTracker.addObserver(invalidator)
? I need to observe table changes, i don’t need the changed data or notifications, just to know
a
You could make a select all query on that table, and then manually add a listener to it
m
ya, thats what i ended up doing. SELECT 1 FROM tableName should work
thanks!