首页 > 数据库技术 > 详细

2、java连接oracle

时间:2014-04-06 18:43:16      阅读:578      评论:0      收藏:0      [点我收藏+]
1.BaseDao.java
import java.sql.Connection;
import java.sql.DriverManager;

public class jdbcthin {
    static String dbUrl = "jdbc:oracle:thin:@127.0.0.1:1521:zmp20112859";
         // theUser为数据库用户名
        static String theUser = "system";
    // thePw为数据库密码
    static String thePw = "zmpandzmp";
    // 几个数据库变量
    static Connection con = null;

    // 初始化连接
    public static Connection getCon() {
        try {
            Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
            // 与url指定的数据源建立连接
            con = DriverManager.getConnection(dbUrl, theUser, thePw);
        } catch (Exception e) {
            e.printStackTrace();
        }
        return con;
    }
}

2.test.java
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;


public class test {

    /**
     * @param args
     */

    public static void main(String[] args) {
        Connection con = BaseDao.getCon(); 
        ResultSet rs = null;
        PreparedStatement ps = null;
        String sql = "select sname from student";
        try {
            ps = con.prepareStatement(sql);
        } catch (SQLException e) {
            System.out.println("預處理異常!");
            e.printStackTrace();
        }
        try {
            rs = ps.executeQuery();
        } catch (SQLException e) {
            System.out.println("執行查詢異常!");
            e.printStackTrace();
        }
        try {
            while (rs.next()) {
                System.out.println("姓名:" + rs.getString("sname"));
            }
        } catch (SQLException e) {
            System.out.println("讀取數據異常!");
            e.printStackTrace();
        }
    }
}




2、java连接oracle,布布扣,bubuko.com

2、java连接oracle

原文:http://www.cnblogs.com/zmpandzmp/p/3648750.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!