免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2106 | 回复: 3
打印 上一主题 下一主题

JOptionPane.showMessageDialog问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-04-03 17:02 |只看该作者 |倒序浏览
请问下面的代码输出为什么会?

找到: void
需要: int

import javax.swing.*;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;


public class  Database {
         
        static {
                // This is a static block, so it will only be called once (the first time
                // the class is loaded).  Uncomment the line for the appropriate driver
                try {
                        //Class.forName("org.postgresql.Driver");
                        Class.forName("oracle.jdbc.driver.OracleDriver");
            //Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                } catch (Exception e) {
                       int option=0;
                   option=JOptionPane.showMessageDialog(null,"Are you sure you want to update?\nThis cannot

be undone",
                           "Confirm Update",
                          // JOptionPane.YES_NO_OPTION,
                   JOptionPane.ERROR_MESSAGE);
                  

                }
        }
        private Connection conn;
       
        public Database() throws SQLException {
                // uncomment the appropriate line here.
                // Also, change 'alacritas' to 'lawson' if you are in Launceston, and change
                // 'username' and 'password' as applicable.
//conn = DriverManager.getConnection("jdbc:postgresql://alacritas/username", "username", "password");
conn = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:qianyuan", "scott", "tiger");
            //conn = DriverManager.getConnection("jdbc:odbc:qian", "", "");
        }
       
       
       
        public ResultSet select(String sql) throws SQLException {
                Statement stmt = conn.createStatement();
                return stmt.executeQuery(sql);
        }
       
       
        public int update(String sql) throws SQLException {
                Statement stmt = conn.createStatement();
                return stmt.executeUpdate(sql);
        }
       
       
        public void disconnect() throws SQLException {
                conn.close();
        }
}

[ 本帖最后由 perryhg 于 2006-4-4 01:36 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2006-04-03 17:03 |只看该作者
又有表情图。

论坛徽章:
0
3 [报告]
发表于 2006-04-03 23:04 |只看该作者
自己顶

论坛徽章:
0
4 [报告]
发表于 2006-04-03 23:35 |只看该作者
请问下面的代码输出为什么会?

找到: void
需要: int

??

楼主应该好好学习一下如何表达自己的意思,自然语言和程序语言,毕竟美观的帖子也是对大家的尊重嘛~:em11:

大概看了一下代码,没有看到你的main入口,你上述msg如何出现的??

还有dao类最好返回vo或者list对象,直接返回rs,你的stmt没法关闭
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP