为Oracle检查JDBC安装 : 甲骨文JDBC « 数据库JDBC « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 数据库JDBC » 甲骨文JDBC屏幕截图 
为Oracle检查JDBC安装
 
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.Statement;

public class CheckJDBCInstallation_Oracle {
  public static Connection getConnection() throws Exception {
    String driver = "oracle.jdbc.driver.OracleDriver";
    String url = "jdbc:oracle:thin:@localhost:1521:databaseName";
    String username = "name";
    String password = "pass";
    Class.forName(driver)// load Oracle driver
    Connection conn = DriverManager.getConnection(url, username, password);
    return conn;
  }

  /**
   * Test Validity of JDBC Installation
   
   @param conn
   *          a JDBC connection object
   @return true if a given connection object is a valid one; otherwise return
   *         false.
   @throws Exception
   *           Failed to determine if a given connection is valid.
   */
  public static boolean isValidConnection(Connection connthrows Exception {

    if (conn == null) {
      // null connection object is not valid
      return false;
    }

    if (conn.isClosed()) {
      // closed connection object is not valid
      return false;
    }

    // for Oracle database:
    // you may use the connection object
    // with query of "select 1 from dual";
    // if the query returns the result, then
    // it is a valid connection object.

    return testConnection(conn, "select 1 from dual");
  }

  /**
   * Test Validity of a Connection
   
   @param conn
   *          a JDBC connection object
   @param query
   *          a sql query to test against database connection
   @return true if a given connection object is a valid one; otherwise return
   *         false.
   */
  public static boolean testConnection(Connection conn, String query) {

    ResultSet rs = null;
    Statement stmt = null;
    try {
      stmt = conn.createStatement();
      if (stmt == null) {
        return false;
      }

      rs = stmt.executeQuery(query);
      if (rs == null) {
        return false;
      }

      if (rs.next()) {
        // connection object is valid: we were able to
        // connect to the database and return something useful.
        return true;
      }
      // there is no hope any more for the validity
      // of the connection object
      return false;

    catch (Exception e) {
      return false;
    finally {
      // close database resources
      try {
        rs.close();
        stmt.close();
      catch (Exception e) {
        // ignore
      }
    }
  }

  public static void main(String[] args) {
    Connection conn = null;
    try {
      conn = getConnection();
      System.out.println("conn=" + conn);
      System.out.println("valid connection = " + isValidConnection(conn));
    catch (Exception e) {
      // handle the exception
      e.printStackTrace();
      System.exit(1);
    finally {
      // release database resources
      try {
        conn.close();
      catch (Exception e) {
        // ignore
      }
    }
  }
}
           
         
  
Related examples in the same category
1. 在数据库中创建一个表格
2. 使用结构从Oracle数据库中获取对象
3. 在Oracle数据库中插入博客(图片或照片)数据类型
4. 序列化和反序列化Oracle对象
5. 获取Oracle表名称
6. 从Oracle JDBC驱动程序获取参数元数据
7. 测试Oracle JDBC驱动程序的安装
8. Create Employee Table Oracle
9. 计数Oracle中的行
10. 从结果中为Oracle获取列名称
11. 演示Oracle结果
12. Oracle所有数据类型
13. 获得Oracle柱特权
14. Test OCINet 8 App
15. 试验SSL
16. 试验数据加密完整性
17. 试验DataSource查找
18. 演示OracleDataSource
19. 注册自定义类型到Oracle
20. 插入自定义类型到Oracle
21. 创建Oracle数据库的对象类型
22. Oracle表中插入对象的值
23. JDBC连接到Oracle数据库
24. 创建一个Oracle表存储Java类型
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.