Is there a kotlin database library with support fo...
# announcements
d
Is there a kotlin database library with support for coroutines? Not for android.
g
Exposed, SQLDelight (only Sqlite is supported for now) also every other database library/client that provides asynchronous API, you can just write/use adapter for this async type (for example check jasync-sql which has CompletableFuture based API, but it can be easily used with coroutines using
.await()
extension
Also there is nice coroutines support in Spring, which has Spring Data R2DBC
👍 1
d
Thanks!