Dear Support,
Can I use HxTT on J2EE? I can create a connection pool on Application server of J2EE? Is there any example of servlet (which access .dbf file) which can explain how I can implement three tier architecture of Java?
Regards
OMkar
|
Yeah. It supports J2EE.
The simplest code is:
com.hxtt.sql.HxttConnectionPoolDataSource pds=new com.hxtt.sql.HxttConnectionPoolDataSource();
pds.setUrl("jdbc:dbf:/f:/dbffiles");
javax.sql.PooledConnection pc=pds.getPooledConnection();
|