今天就跟大家聊聊有关使用java如何实现连接数据库,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。package com.shsxt.jdbcs;import java.sql.Con
今天就跟大家聊聊有关使用java如何实现连接数据库,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
package com.shsxt.jdbcs;import java.sql.Connection;import java.sql.DriverManager;import java.sql.ResultSet;import java.sql.SQLException;import java.sql.Statement;public class Demo002JDBCConnect { public static void main(String[] args) throws ClassNotFoundException { Class.forName("oracle.jdbc.driver.OracleDriver"); String url = "jdbc:oracle:thin:@localhost:1521:orcl"; String user= "scott"; String pwd= "tiger"; Connection conn = null; Statement s = null; ResultSet rs = null; try { conn = DriverManager.getConnection(url, user, pwd); s = conn.createStatement(); String sql = "select deptno, dname, loc from dept"; rs = s.executeQuery(sql); while(rs.next()){ int deptno = rs.getInt(1); // 根据列号来获取值 String dname = rs.getString("dname"); // 根据列名来获取值 String loc = rs.getString(3); System.out.println(deptno + "\t" + dname + "\t" + loc); } } catch (SQLException e) { e.printStackTrace(); }finally{ if(rs!=null){ try { rs.close(); } catch (SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); } } if(s!=null){ try { s.close(); } catch (SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); } } if(conn!=null){ try { conn.close(); } catch (SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } }}
--结束END--
本文标题: 使用java如何实现连接数据库
本文链接: https://lsjlt.com/news/227273.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0