I am trying to delete SWT table row using SWT/Jface datadinding to DB through ibatis implementation.
I am getting below exception whenever i try to do insert or delete operation from client side (SWT).
org.apache.ibatis.exceptions.PersistenceException:
### Error committing transaction. Cause: java.sql.SQLException: database is locked
This doesn't happen when i try to hit DB (SQLite) through ibatis directly.
Below is the code section for delete operation i am doing with SWT button and trying to delete SWT table row.
SWT Code....
btnDeleteWorkspaceRow.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
IStructuredSelection selection = (IStructuredSelection) m_workplaceViewer.getSelection();
WorkplaceDetail workplaceDetail = (WorkplaceDetail) selection.getFirstElement();
boolean confirm = MessageDialog.openConfirm(shell, "Confirm Delete", "Are you sure you want to delete row"+ + workplaceDetail.getCode() + "'?");
if (confirm) {
**int code =186;** (Hardcoded row value- actual DB row number)
WorkplaceDaoImpl workplaceDaoImpl = new WorkplaceDaoImpl();
try {
**WorkplaceDaoImpl.deleteWorkplaceDetail(code);**
} catch (SQLException e1) {
e1.printStackTrace();
}
m_bindingContext.updateModels();
}
}
});
This is Ibatis DAO implementation code which i am invoking in SWT
**WorkplacseDaoImpl.java**
public void deleteWorkplaceDetail(int code)
throws SQLException {
SqlSession session = sqlSessionFactory.openSession();
session.delete("WorkplaceDetail.deleteWorkplaceById", code);
session.commit();
session.close();
}
**Ibatis Configuration**
<delete id="deleteWorkplaceById">
delete from Workplace where workplaceCode=#{code}
</delete>
Please help me to resolve this issue. I am using SQLite DB