And here the question text itself: What is the eq...
# terpal
c
And here the question text itself: What is the equivalent of these "db scopes" in Jdbi and JDBC, in terpal-sql?
Copy code
jdbi.open().use { db ->
    val orgDao = dbtx.attach(OrganizationDao::class.java)
    val orgs = orgDao.listOrganizations()
    // ...
}
Copy code
db.database.connection.use { jdbc ->
     jdbc.prepareStatement("....").execute()
}
Are these connections? Or sessions? Or transactions? (nah, they are for sure not transactions; transactions are opened in a different way)