/**
  * Get all the case study data as one long string (for debugging)
  *
  * @return String teh string representing the data in the database ("false" indicates load
  *     failure)
  */
 public static String getAllCaseString() {
   if (database == null) {
     return "false";
   } else {
     return database.getRowsString();
   }
 }