i am inserting a row in a table with kotlin exposed using a raw sql. Is it possible to return the row id?
val sql: String =
"""
INSERT INTO customer (name, city) VALUES ('Tom', 'Dublin')
"""
TransactionManager.current().connection.prepareStatement(sql, true).executeUpdate()