- 1、本文档共8页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
实验六 JDBC连接数据库
课程 高级JAVA开发技术 _ 实验名称 实验六 JDBC连接数据库 教 师 审 批 签 字实验目的掌握JDBC连接数据库实验内容通过JDBC/ODBC桥接方式访问Oralce数据库6.G.1JDBC访问数据库6.G.2实验过程及结果实验源码:publicclass Constants {publicstatic String DRIVER = sun.jdbc.odbc.JdbcOdbcDriver;publicstatic String URL = jdbc:odbc:myscott;publicstatic String USERNAME = scott;publicstatic String PASSWORD = tiger;}import java.sql.Connection;import java.sql.DriverManager;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.sql.SQLException;publicclass DBUtil {Connection conn = null;PreparedStatement pstmt = null;ResultSet rs = null;public Connection getConnection() throws ClassNotFoundException, SQLException, InstantiationException, IllegalAccessException {String DRIVER = Config.getValue(driver);String URL = Config.getValue(url);String USERNAME = Config.getValue(username);String PASSWORD = Config.getValue(password);System.out.println(DRIVER);try {Class.forName(DRIVER);conn = DriverManager.getConnection(URL, USERNAME, PASSWORD);returnconn;} catch (Exception e) {thrownew SQLException(驱动错误或连接失败);}}public ResultSet executeQuery(String preparedSql, String[] param) {try {pstmt = conn.prepareStatement(preparedSql);if (param != null) {for (inti = i; i param.length; i++) {pstmt.setString(i + 1, param[i]);}}rs = pstmt.executeQuery();} catch (SQLException e) {e.printStackTrace();}returnrs;}publicint executeUpdate (String preparedSql, String[] param) {int num = 0;try {pstmt = conn.prepareStatement(preparedSql);if (param != null) {for (int i = 0; i param.length; i++) {pstmt.setString(i + 1, param[i]);}}num = pstmt.executeUpdate();} catch (SQLException e) {e.printStackTrace();}return num;}publicvoid closeAll() {if (rs != null) {try {rs.close();} catch (SQLException e) {e.printStackTrace();}}if (pstmt != null) {try {pstmt.close();} catch (SQLException e) {e.printStackTrace();}}if (conn != null) {try {conn.close();} catch (SQLException e) {e.printStackTrace();}}}}package com.haiersoft.chat.client;import javax.swing.*;import java.awt.*;import java.awt.e
文档评论(0)