* @param seed seed
* @param correctLogin true, if the login was successful; false otherwise
* @throws SQLException in case of an database error
*/
public void addLoginEvent(String username, InetAddress source, String service, String seed, boolean correctLogin) throws SQLException {
DBTransaction transaction = TransactionPool.get().beginWork();
try {
addLoginEvent(transaction, username, source, service, seed, correctLogin);
} finally {
TransactionPool.get().commit(transaction);
}