| java.lang.Object org.hsqldb.jdbc.jdbcDataSourceFactory
jdbcDataSourceFactory | public class jdbcDataSourceFactory implements ObjectFactory(Code) | | A JNDI ObjectFactory for creating
jdbcDataSource jdbcDatasource object instances.
author: deforest@users version: 1.7.2 |
Method Summary | |
public Object | getObjectInstance(Object obj, Name name, Context nameCtx, Hashtable environment) Creates a jdbcDatasource object using the location or reference
information specified.
The Reference object should support the properties, database, user,
password. |
getObjectInstance | public Object getObjectInstance(Object obj, Name name, Context nameCtx, Hashtable environment) throws Exception(Code) | | Creates a jdbcDatasource object using the location or reference
information specified.
The Reference object should support the properties, database, user,
password.
Parameters: obj - The reference information used in creating ajdbcDatasource object. Parameters: name - ignored Parameters: nameCtx - ignored Parameters: environment - ignored A newly created jdbcDataSource object; null if an objectcannot be created. exception: Exception - never |
|
|