今天就跟大家聊聊有关怎么对JDBC进行封装,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
如下所示:
import java.sql.Connection;import java.sql.DriverManager;import java.sql.PreparedStatement;import java.sql.ResultSet;public class DbTool { private static final String ORACLE_DRIVER = "oracle.jdbc.driver.OracleDriver"; private static final String URL = "jdbc:oracle:thin:@localhost:1521:XE"; private static final String USER = ""; private static final String PASSWORD = ""; public static Connection getConnection(){ try { //加载oracle数据驱动类 Class.forName(ORACLE_DRIVER); //返回数据库通道对象 return DriverManager.getConnection(URL, USER, PASSWORD); } catch (Exception e) { // TODO: handle exception } return null; } public static void close(Connection conn,PreparedStatement ps,ResultSet rs){ try { if (rs!=null) { rs.close(); } if (ps!=null) { ps.close(); } if (conn!=null) { conn.close(); } } catch (Exception e) { //打印错误 e.printStackTrace(); } } public static void close(Connection conn,PreparedStatement ps){ try { if (ps!=null) { ps.close(); } if (conn!=null) { conn.close(); } } catch (Exception e) { //打印错误 e.printStackTrace(); } } }
看完上述内容,你们对怎么对JDBC进行封装有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注编程网行业资讯频道,感谢大家的支持。