Example #1
0
 /**
  * Updating the notebook in the database
  *
  * @notebook : the notebook object to save
  * @columns : the columns to update
  *
  * return true if and only if the update operation was done successfully and false otherwise
  **/
 public bool update(Notebook notebook, params String[] columns)
 {
     try {
         return(notebookDAO.update(notebook, columns));
     } catch (Exception e) {
         Logging.logInfo(true, e.Message);
     }
     return(false);
 }