return new Dictionary();
}
public Dictionary getRandom() {
try {
JdbcDatabaseConnection c = (JdbcDatabaseConnection) DicConnection.getInstance().getReadOnlyConnection();
Connection conn = c.getInternalConnection();
Statement stmt = conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);
ResultSet result = stmt.executeQuery("select * from v_randomdic");
result.first();
return new Dictionary(result.getString(1), result.getString(2), result.getString(3), result.getString(4));
} catch (SQLException e) {