Hey folks! Please how do I get all the tables in a...
# exposed
m
Hey folks! Please how do I get all the tables in a database using the database instance like below?
val db = Database.connect("jdbc:h2:mem:test", driver = "org.h2.Driver")
l
Copy code
transaction(db) {
    currentDialect.allTablesNames()
}
👀 1
m
@Luis Arcos Thanks. I appreciate