Verify database setup : Connection « Database SQL JDBC « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Database SQL JDBC » ConnectionScreenshots 
Verify database setup
  
import java.sql.*;

public class CheckJDBCInstallation {
  /**
   * Test Validity of JDBC Installation
   
   @param conn
   *          a JDBC connection object
   @param dbVendor
   *          db vendor {"oracle", "mysql" }
   @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 conn, String dbVendorthrows Exception {
    if (conn == null) {
      return false;
    }

    if (conn.isClosed()) {
      return false;
    }
    // depends on the vendor of the database:
    //
    // for MySQL database:
    // you may use the connection object
    // with query of "select 1"; if the
    // query returns the result, then it
    // is a valid Connection object.
    //
    // 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.
    if (dbVendor.equalsIgnoreCase("mysql")) {
      return testConnection(conn, "select 1");
    else if (dbVendor.equalsIgnoreCase("oracle")) {
      return testConnection(conn, "select 1 from dual");
    else {
      return false;
    }

  }

  /**
   * Test Validity of a Connection
   
   @param conn
   *          a JDBC connection object
   @param query
   *          a sql query to test against db 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;
      }

      // connection object is valid: you were able to
      // connect to the database and return something useful.
      if (rs.next()) {
        return true;
      }

      // there is no hope any more for the validity
      // of the Connection object
      return false;
    catch (Exception e) {
      // something went wrong: connection is bad
      return false;
    finally {
      // close database resources
      try {
        rs.close();
        stmt.close();        
      catch (SQLException e) {
        e.printStackTrace();
      }
    }
  }

  public static void main(String[] args) {
    Connection conn = null;
    try {
      String dbVendor = args[0];
      // get connection to a database
      System.out.println("dbVendor=" + dbVendor);
      System.out.println("conn=" + conn);
      System.out.println("valid connection = " + isValidConnection(conn, dbVendor));
    catch (Exception e) {
      // handle the exception
      e.printStackTrace();
      System.exit(1);
    finally {
      // release database resources
      try {
        conn.close();
      catch (SQLException e) {
        e.printStackTrace();
      }
    }
  }
}

           
         
    
  
Related examples in the same category
1. Connect to more than one database
2. Debug Database connection
3. Create Connection With Properties
4. Set save point
5. JDBC Simple Connection
6. Load some drivers
7. Encapsulate the Connection-related operations that every JDBC program seems to use
8. Test of loading a driver and connecting to a database
9. Load MySQL JDBC Driver
10. Oracle JDBC Driver load
11. Oracle JDBC Driver load test: NewInstance
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.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.