protected String getUserAlias(final int id)
throws SQLException
{
final Slot<String> alias = new Slot<String>();
DBConnection connection = getConnection();
try {
connection.query(USER_ALIAS, new DBQueryHandler() {
public void prepare(PreparedStatement s)
throws SQLException
{
s.setInt(1,id);
}