* The ResultSet that holds the LogEntry attributes.
* @return The LogEntry held by a ResultSet.
*/
protected LogEntry readLogEntry(ResultSet result) throws Exception
{
LogEntry logentry = new LogEntryImpl(result.getLong("creation_time"), result.getString("key_"), (int) result.getInt("event"), result.getString("worker"));
return logentry;
}