Skip to content

Instantly share code, notes, and snippets.

View dzagorovsky's full-sized avatar

Dmitry Zagorovsky dzagorovsky

View GitHub Profile
import play.db.jpa.JPA;
public class FirstDao {
public int dbCall() {
return JPA.em()
.createNativeQuery("DELETE FROM table WHERE id=1")
.executeUpdate();
}