Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Anorm LIKE clause with String Interpolation

Tags:

scala

anorm

Is it possible to use LIKE clause with String Interpolation in Anorm?

// e.g. this doesn't work
SQL"SELECT * FROM users WHERE last_name LIKE $lastName%".as(userParser.*)

UPDATED: I need SQL statement that selects all users with a last name starting with given letters e.g. :

SELECT * FROM users WHERE last_name LIKE 'Smi%';
like image 695
Ir3000 Avatar asked Aug 05 '14 18:08

Ir3000


1 Answers

If expected WHERE clause is something like WHERE last_name LIKE '%pattern%' you will have to prepare string before passing it as argument.

SQL"""SELECT * FROM users WHERE last_name LIKE ${"%"+lastName+"%"}""".
  as(userParser.*)
like image 92
cchantep Avatar answered Oct 13 '22 01:10

cchantep