How To Insert Data?

The simplest method inserts the rows and returns the number of inserted rows.

def insertCustomer: Int = ctx.run {
  sql"INSERT INTO customers(name) VALUES('my_customer')".insert()
}