使用anorm将数据插入表中

时间:2014-01-20 19:54:51

标签: scala anorm

我是scala语言的新手,我使用anorm将数据插入到DB中,请举例说明将数据插入到我的表userTable中

表: 用户身份, 的userName

由于

2 个答案:

答案 0 :(得分:2)

尝试此代码..如果能解决您的问题,请接受答案。

DB.withConnection { implicit c =>
  SQL("INSERT INTO userTable values({userId},{userName})").on("userId" -> "User's id", "userName" -> "your_name").executeInsert();
}

答案 1 :(得分:1)

DB.withConnection { implicit c =>
SQL("insert into userTable values({userId},{userName})").on("userId" -> value1, "userName" -> value2).executeInsert();
}