DatasetEditorModelRow newRow = createRow(getRowCount()+1);
newRow.setInsert(true);
addRowAtIndex(rowIndex, newRow);
notifyRowsInserted(rowIndex, rowIndex);
editorTable.selectCell(rowIndex, editorTable.getSelectedColumn() == -1 ? 0 : editorTable.getSelectedColumn());
isInserting = true;
if (dataset != null) {
getConnectionHandler().notifyChanges(dataset.getVirtualFile());
}
} catch (SQLException e) {