Test DataSource LookUp : Oracle JDBC « Database SQL JDBC « Java






Test DataSource LookUp

 
/*

Java Programming with Oracle JDBC
by Donald Bales 
ISBN: 059600088X
Publisher: O'Reilly

*/


import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Properties;

import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;
import javax.sql.DataSource;

public class TestDSLookUp {

  public static void main(String[] args) throws SQLException, NamingException {

    Context ctx = null;
    try {
      Properties prop = new Properties();
      prop.setProperty(Context.INITIAL_CONTEXT_FACTORY,
          "com.sun.jndi.fscontext.RefFSContextFactory");
      prop.setProperty(Context.PROVIDER_URL, "file:/JNDI/JDBC");
      ctx = new InitialContext(prop);
    } catch (NamingException ne) {
      System.err.println(ne.getMessage());
    }

    DataSource ds = (DataSource) ctx.lookup("joe");
    Connection conn = ds.getConnection();
    Statement stmt = conn.createStatement();
    ResultSet rset = stmt
        .executeQuery("select 'Hello Thin driver data source tester '||"
            + "initcap(USER)||'!' result from dual");
    if (rset.next())
      System.out.println(rset.getString(1));
    rset.close();
    stmt.close();
    conn.close();
  }
}

           
         
  








Related examples in the same category

1.Create a table in database
2.Get Object From Oracle Database Using STRUCT
3.Insert BLOG(Picture or Photo) Data Type Into Oracle Database
4.Serialized And Deserialize Object Oracle
5.Get Oracle Table Names
6.Get Parameter MetaData From Oracle JDBC Driver
7.Test Oracle JDBC Driver Installation
8.Create Employee Table Oracle
9.Count row in Oracle
10.Get Column Names From ResultSet for Oracle
11.Demo ResultSet Oracle
12.All data types for Oracle
13.Get Column Privileges Oracle
14.Test OCINet 8 App
15.Test SSL
16.Test Data Encryption Integrity
17.OracleDataSource Demo
18.Register custome type to Oracle
19.Insert custom type to Oracle
20.Check JDBC Installation for Oracle
21.Creating an OBJECT Type in an Oracle Database
22.Inserting an OBJECT Value into an Oracle Table
23.Connect to an Oracle database with JDBC
24.Creating an Oracle Table to Store Java Types