Also, should I use JDBC or R2DBC, what is the diff...
# komapper
a
Also, should I use JDBC or R2DBC, what is the difference and what should one use today and why ? It's for MariaDB
t
should I use JDBC or R2DBC, what is the difference and what should one use today and why ?
If there are no prerequisites, I recommend JDBC because JDBC drivers is more stable than R2DBC drivers. If you are using Ktor and want to take advantage of Ktor’s characteristics, R2DBC is the way to go. There is little difference between JDBC and R2DBC in terms of Komapper functionality
a
It's for a chat app using Ktor and Compose for Dekstop, so yeah I need everything to be suspended, I'll try to use R2DBC then !