Details
-
Task
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
1.3.2, 1.3.1, 1.3.3, 1.3.4, 1.3.5
-
None
Description
Boolean value when using the scala anorm string interpolation on boolean value, always return true.
working examples :
SQL(s"select * from examples where id = $id")
SQL"select * from examples where id = #$id".
error :
SQL"select * from examples where id = $id".
Using option "useServerPrepStmts=false" correct the problem.