}
}
private String printShortSummary() throws SqlJetException {
db.beginTransaction(SqlJetTransactionMode.WRITE);
ISqlJetTable table = db.getTable("answers");
final ISqlJetCursor cursor = table.lookup("login", login.getLogin());
int answered = (int) cursor.getRowCount();
int right = 0;
if (!cursor.eof()) {
do {
if (Integer.parseInt(cursor.getString("answer")) == 1) ++right;