author.setLocation(txtAuthorLocation.getText());
author.setDetails(txtAuthorDetails.getText());
AuthorModel authorModel = new AuthorModel();
int update_flag = authorModel.update(author);
if(update_flag == 1){
//tableModel.fireTableRowsUpdated(row-1, row+1);
tableModel.fireTableDataChanged();
jDialog1.dispose();
JOptionPane.showMessageDialog(this, "Author "+author.getFull_name()+" updated!", "Success!", JOptionPane.INFORMATION_MESSAGE);