Use Oracle DataSource To Store MySql Connection : MySQL « Database SQL JDBC « Java






Use Oracle DataSource To Store MySql Connection

  
import java.io.FileOutputStream;
import java.io.PrintWriter;
import java.sql.Connection;
import java.sql.DriverManager;
import java.util.Hashtable;

import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NameClassPair;
import javax.naming.NamingEnumeration;

import oracle.jdbc.pool.OracleDataSource;

public class Main {
  public static void main(String[] args) throws Exception {
    Connection conn = getMySqlConnection();
    // Set up the environment for creating the initial context
    Hashtable env = new Hashtable(11);
    env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.fscontext.RefFSContextFactory");
    env.put(Context.PROVIDER_URL, "file:/jdbc");

    Context context = new InitialContext(env);
    NamingEnumeration list = context.list("jdbc");

    while (list.hasMore()) {
      NameClassPair nc = (NameClassPair) list.next();
      System.out.println(nc);
    }

    OracleDataSource ods = new OracleDataSource();
    ods.setDriverType("thin");
    ods.setServerName("localhost");
    ods.setNetworkProtocol("tcp");
    ods.setDatabaseName("databaseName");
    ods.setPortNumber(1521);
    ods.setUser("userName");
    ods.setPassword("Password");

    Context ctx = new InitialContext();
    ctx.bind("file:/jdbc/mydb", ods);

    // Get the initial context of JNDI and lookup the datasource.
    InitialContext ic = new InitialContext();
    javax.sql.DataSource ds = (javax.sql.DataSource) ic.lookup("file:/jdbc/mydb");
    // Set the optional printwriter where the trace log is to be directed.
    ds.setLogWriter(new PrintWriter(new FileOutputStream("c:/datasource.log")));
    Connection con1 = ds.getConnection();
    Connection con2 = ds.getConnection("userName", "password");
    conn.close();

  }

  private static Connection getHSQLConnection() throws Exception {
    Class.forName("org.hsqldb.jdbcDriver");
    System.out.println("Driver Loaded.");
    String url = "jdbc:hsqldb:data/tutorial";
    return DriverManager.getConnection(url, "sa", "");
  }

  public static Connection getMySqlConnection() throws Exception {
    String driver = "org.gjt.mm.mysql.Driver";
    String url = "jdbc:mysql://localhost/demo2s";
    String username = "oost";
    String password = "oost";

    Class.forName(driver);
    Connection conn = DriverManager.getConnection(url, username, password);
    return conn;
  }

  public static Connection getOracleConnection() throws Exception {
    String driver = "oracle.jdbc.driver.OracleDriver";
    String url = "jdbc:oracle:thin:@localhost:1521:databaseName";
    String username = "userName";
    String password = "password";

    Class.forName(driver); // load Oracle driver
    Connection conn = DriverManager.getConnection(url, username, password);
    return conn;
  }

}

           
         
    
  








UseOracleDataSourceToStoreMySqlConnection.zip( 3,854 k)

Related examples in the same category

1.Creating connection to the MySQL database
2.Creating a Database in MySQL
3.Creating a MySQL Database Table to store Java Types
4.JDBC Mysql Connection String
5.Inserting values in MySQL database table
6.Create Database for MySQL
7.Test MySQL JDBC Driver Installation
8.Create table for mysql database
9.Setup mysql datasource
10.Access MySQL Database: open connection, create table, insert and retrieve
11.Count rows in MySQL
12.Demo ResultSet for MySQL
13.Create Table With All Data Types In MySQL
14.Insert text file into MySQL
15.Read a Clob object from MySQL
16.How to serialize/de-serialize a Java object to the MySQL database.
17.Check JDBC Installation for MySQL
18.Demo MySql Transaction
19.Retrieve auto-generated keys
20.Move to absolute or relative row
21.Commit or rollback transaction in JDBC
22.Issue 'create database' command ny using Statement
23.Loading a Flat File to a MySQL Table, file is comma-separated
24.Loading a Flat File to a MySQL Table, file is terminated by \r\n, use this statement
25.Copy data from one table to another in a database
26.Exporting a MySQL Table to a Flat File
27.MySQL Error code and message