给出一个Oracle DataSource 数据源单态模式的例子?

Posted mark-to-win

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了给出一个Oracle DataSource 数据源单态模式的例子?相关的知识,希望对你有一定的参考价值。

6.Oracle DataSource and SingleTon: (视频下载) (全部书籍)import oracle.jdbc.pool.OracleDataSource;
import java.sql.Connection;
import java.sql.*;

public class OracleSingletonDataSource {
  static private OracleDataSource ods;
  private OracleSingletonDataSource() {
    try{
        ods = new OracleDataSource();
        ods.setURL("jdbc:oracle:thin:@localhost:1521:qixy");
        ods.setUser("scott");
        ods.setPassword("tiger");
            }catch(Exception e){
            e.printStackTrace();
            }
  }
  public static Connection getConnection() throws Exception {
    if (ods==null)
       {
           new OracleSingletonDataSource();
          // ods.getConnection();

      }
      Connection con =null;
      try {
          con = ods.getConnection();
      } catch (SQLException ex) {

详情请见:http://www.mark-to-win.com/index.html?content=JavaBeginner/javaUrl.html&chapter=JavaBeginner/JavaBeginner10_web.html#OracleDataSourceandSingleTon

以上是关于给出一个Oracle DataSource 数据源单态模式的例子?的主要内容,如果未能解决你的问题,请参考以下文章

给出一个SQLServer DataSource 数据源单态模式的例子?

实体数据模型向导中没有Oracle DataSource

给出一个JNDI用来查找dataSource的例子?

Oracle数据库连接中Provider=OraOleDb.Oracle.1与Provider=MSDAORA啥区别?

Spring Boot 配置Oracle数据库

java当中JDBC当中请给出一个sql server的dataSource的helloworld例子