Package org.qdao

Examples of org.qdao.IDBEngine


    // config.password = "QDAO";
    // config.url = "jdbc:oracle:thin:@WAMNET-SVR:1521:WAMNET";
    // config.jarPath = new String[] { "D:\\JAR\\ojdbc6.jar" };

    // initialize the engine
    IDBEngine engine = DBEngineFactory.getEngine(config);
    try
        {
            engine.initialize(config);
        }
        catch (InstantiationException e)
        {
            e.printStackTrace();
        }
View Full Code Here


    config.password = password;
    config.url = url;
    config.jarPath = jarPaths;

    // initialize the engine
    IDBEngine engine = DBEngineFactory.getEngine(config);
    engine.initialize(config);
    return engine;
  }
View Full Code Here

   */
  public static IDBEngine initializeDBEngine(DBConfig config) throws InstantiationException, IllegalAccessException,
      ClassNotFoundException,
      SQLException {
    // initialize the engine
    IDBEngine engine = DBEngineFactory.getEngine(config);
    engine.initialize(config);
    return engine;
  }
View Full Code Here

TOP

Related Classes of org.qdao.IDBEngine

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.