예제 #1
0
 public List<Memory> findMemoryByTitle(String title) {
   // get the memories with a given title
   return Memory.find(Memory.class, "title = ?", title);
 }