sql « playframework « Java Enterprise Q&A





1. is my sql query prone to sql injection or other attacks    stackoverflow.com

I was using some sql statements in views in a web app developed using playframework.I have the following java function

public static void search(String word){
   String trimword = word.trim();
  ...

2. Handle URL query parameters in Play! SQL statement?    stackoverflow.com

I am testing a Ext JS application (Client Side) and Play Framework (Service Side). I am using a grid in Ext JS with pagination. The pagination part requires to send URL Query Parameters ...

3. Traversing 2 lists in play?    stackoverflow.com

I wanted to merge two lists and display the output in the front end using play!. The list is a resultset of an SQL query. I have two lists as I'm ...

4. How do I get the SQL Schema creation statements with Play! Framework?    stackoverflow.com

This question shows how to get Play! to show SQL statments. I followed on the accepted solution (jpa.debugSQL=true), but I still don't see the SQL statements that are used to ...