I\'m trying ScalaQuery, it is really amazing. I could defined the database table using Scala class, and query it easily.
But I would like to know, in the following c
This thread is a bit old, but maybe someone will find this useful. All my DAOs include this:
def create = db withSession { if (!MTable.getTables.list.exists(_.name.name == MyTable.tableName)) MyTable.ddl.create }