use of org.firebirdsql.jca.FBManagedConnectionFactory in project jaybird by FirebirdSQL.
the class FBTestProperties method createFBManagedConnectionFactory.
public static FBManagedConnectionFactory createFBManagedConnectionFactory(@SuppressWarnings("UnusedParameters") ConnectionManager cm) {
FBManagedConnectionFactory mcf = new FBManagedConnectionFactory(getGdsType());
mcf.setDefaultConnectionManager(new InternalConnectionManager());
return mcf;
}
Aggregations