各位大虾,小弟java、oracle都是菜鸟,最近遇到问题,求帮忙。。    
public AddTestDialog(Frame owner, String title, boolean modal) {
        super(owner, title, modal);
        try {
            setDefaultCloseOperation(DISPOSE_ON_CLOSE);
            jbInit();
            pack();//报错点
        } catch (Exception exception) {
            exception.printStackTrace();
        }        myinit();
    }
连接显示数据库时,报错 Execution of query failed.
说是表或视图不存在,可能是真的不存在,
我跟踪到pack。说出错的地方就在这,不解,求改正方法~~~