anorm
Creates an SQL query using String Interpolation feature. It is a 1-step alternative for SQL("...").on(...) functions.
SQL""" UPDATE computer SET name = ${computer.name}, introduced = ${computer.introduced}, discontinued = ${computer.discontinued}, company_id = ${computer.companyId} WHERE id = $id """.executeUpdate()
Creates an SQL query using String Interpolation feature. It is a 1-step alternative for SQL("...").on(...) functions.