All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.scudata.common.JNDISessionFactory Maven / Gradle / Ivy

Go to download

SPL(Structured Process Language) A programming language specially for structured data computing.

There is a newer version: 20240823
Show newest version
package com.scudata.common;

import java.sql.*;
import javax.sql.*;
import javax.naming.*;
public class JNDISessionFactory implements ISessionFactory
{
	private JNDIConfig cfg;
	private DataSource ds;

	/**
	 * ??ʼ??
	 * @param cfg	jndi????
	 * @throws Exception
	 */
	public JNDISessionFactory( JNDIConfig cfg ) throws Exception {
		this.cfg = cfg;
		javax.naming.Context ctx = new InitialContext();
		ds = (DataSource) ctx.lookup( cfg.getJNDI() );
		if ( ds == null ) 
			throw new Exception( "not found JNDI: " + cfg.getJNDI() );
	}

	/**
	 * ??ȡ????Session
	 */
	public DBSession getSession() throws Exception {
		// edited by bd, 2017.5.31??Connectionȫ????Ϊ???Զ??ύ??
		Connection con = ds.getConnection();
		try{ con.setAutoCommit(false); }catch( Throwable t ) {}
		return new DBSession(con, cfg);
		//return new DBSession( ds.getConnection(), cfg );
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy