Yorgos S.
09/22/2025, 12:12 PM// PostgreSQL
implementation("io.github.smyrgeorge:sqlx4k-postgres:x.y.z")
// MySQL
implementation("io.github.smyrgeorge:sqlx4k-mysql:x.y.z")
// SQLite
implementation("io.github.smyrgeorge:sqlx4k-sqlite:x.y.z")PHondogo
09/22/2025, 2:30 PMval db = PostgreSQL(
url = "<postgresql://localhost:15432/test>", // may be omit 'postgresql:' we already creating PostgreSQL client
username = "postgres",
password = "postgres",
options = options
)Yorgos S.
09/22/2025, 2:47 PMArjan van Wieringen
09/22/2025, 2:51 PMYorgos S.
09/22/2025, 2:54 PMArjan van Wieringen
09/22/2025, 3:01 PMYorgos S.
09/22/2025, 3:02 PMYorgos S.
09/22/2025, 3:02 PMYorgos S.
09/22/2025, 3:03 PMArjan van Wieringen
09/22/2025, 4:02 PMYorgos S.
09/22/2025, 4:11 PMdarkmoon_uk
09/23/2025, 1:11 AMPostgreSQL LISTEN/NOTIFY - having just hand-rolled this for use with Exposed myself, you have my attention! 👀