码迷,mamicode.com
首页 > 数据库 > 详细

JDBC连接Oracle数据库

时间:2017-05-19 21:08:55      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:too   print   str   div   public   执行   etc   import   cut   

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Statement;
public class Test {

    public static void main(String[] args) throws ClassNotFoundException, SQLException {
        //1.加载驱动
        Class.forName("oracle.jdbc.driver.OracleDriver");
        //2.获得数据库连接
        String url="jdbc:oracle:thin:@localhost:1521:orcl";
        Connection conn=DriverManager.getConnection(url,"system","toor");
       System.out.println("连接成功");
        //3.执行sql语句
  Statement st=conn.createStatement();
       String sql="insert into student values(5,‘nama‘,‘man‘)";
       st.execute(sql);
       System.out.println("插入成功");
       st.close();
        conn.close();
    }

}

 

JDBC连接Oracle数据库

标签:too   print   str   div   public   执行   etc   import   cut   

原文地址:http://www.cnblogs.com/zyy1130/p/6880096.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!