我想使用正则表达式从数据库表中获取数据。这就是我所做的:
def getDataRegExp(term: String): Seq[User] ={
DB.withConnection(
implicit connection =>
SQL("select * from user where pseudo ~ '^{term}'").on(
'term -> term
).as(User.simple *)
)
}
但我没有得到任何结果。我做错了什么?
PS:我正在使用PostgreSQL 9.1