Oracle JDBC Driver load test: NewInstance : Connection « Database SQL JDBC « Java






Oracle JDBC Driver load test: NewInstance

    
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;

public class TestClassForNameNewInstanceApp {

  public static void main(String args[]) {

    try {
      Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
    } catch (ClassNotFoundException e) {
      System.out.println("Oops! Can't find class oracle.jdbc.driver.OracleDriver");
      System.exit(1);
    } catch (IllegalAccessException e) {
      System.out
          .println("Uh Oh! You can't load oracle.jdbc.driver.OracleDriver");
      System.exit(2);
    } catch (InstantiationException e) {
      System.out
          .println("Geez! Can't instantiate oracle.jdbc.driver.OracleDriver");
      System.exit(3);
    }

    Connection conn = null;
    Statement stmt = null;
    ResultSet rset = null;
    try {
      conn = DriverManager.getConnection(
          "jdbc:oracle:thin:@dssw2k01:1521:orcl", "scott", "tiger");

      stmt = conn.createStatement();
      rset = stmt
          .executeQuery("select 'Hello '||USER||'!' result from dual");
      while (rset.next())
        System.out.println(rset.getString(1));
      rset.close();
      rset = null;
      stmt.close();
      stmt = null;
      conn.close();
      conn = null;
    } catch (SQLException e) {
      System.out.println("Darn! A SQL error: " + e.getMessage());
    } finally {
      if (rset != null)
        try {
          rset.close();
        } catch (SQLException ignore) {
        }
      if (stmt != null)
        try {
          stmt.close();
        } catch (SQLException ignore) {
        }
      if (conn != null)
        try {
          conn.close();
        } catch (SQLException ignore) {
        }
    }
  }
}

           
         
    
    
    
  








Related examples in the same category

1.Connect to more than one database
2.Verify database setup
3.Debug Database connection
4.Create Connection With Properties
5.Set save point
6.JDBC Simple Connection
7.Load some drivers
8.Encapsulate the Connection-related operations that every JDBC program seems to use
9.Test of loading a driver and connecting to a database
10.Load MySQL JDBC Driver
11.Oracle JDBC Driver load
12.Test Register Oracle JDBC Driver
13.Install Oracle Driver and Execute Resultset
14.Test Thin Net8 App
15.Specify a CharSet when connecting to a DBMS
16.Listing All Available Parameters for Creating a JDBC Connection
17.String java.sql.DriverPropertyInfo.name (Get name of property)
18.boolean java.sql.DriverPropertyInfo.required (Is property value required?)
19.String java.sql.DriverPropertyInfo.value (Get current value)
20.String java.sql.DriverPropertyInfo.description (Get description of property)
21.String[] java.sql.DriverPropertyInfo.choices (Get possible choices for property; if null, value can be any string)
22.Determining If a Database Supports Transactions
23.Committing and Rolling Back Updates to a Database
24.Disable auto commit mode in JDBC
25.Print warnings on a Connection to STDERR.
26.Print warnings on a Connection to a specified PrintWriter.
27.This program tests that the database and the JDBC driver are correctly configured.
28.Manage Db connections providing shortcuts for Statements, PreparedStatements and ResultSets.