Are there any good multiplatform database librarie...
# multiplatform
j
Are there any good multiplatform database libraries out there? I'm interested in building server software that works on both jvm and native or wasm for e.g. lamda functions. I'd need postgres connectivity for this and the library should be co-routine friendly and not use blocking IO. I don't need any ORM functionality. I'm currently exploring options for a new project so I'm open to suggestions but would obviously prefer things that have a bit momentum and community around them.
j
For my new project I'm hoping Room will have a KMP release once I'm done to release a first version (will take a while). But I don't see WASM support there (yet?).
a
j
Thanks both. I ended up using https://github.com/jasync-sql/jasync-sql Not multiplatform but I like that it doesn't try to be an ORM and it uses proper non blocking IO. Sqldelight is nice too but it doesn't do postgresql outside of the JVM. And I need full control over the sql.