org.prevayler.demos.scalability.jdbc.JDBCTransactionSubject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of prevayler-scalability Show documentation
Show all versions of prevayler-scalability Show documentation
A test of query and transaction throughput.
The newest version!
package org.prevayler.demos.scalability.jdbc;
public class JDBCTransactionSubject extends JDBCScalabilitySubject {
public JDBCTransactionSubject(String jdbcDriverClassName, String connectionURL, String user, String password) {
super(jdbcDriverClassName, connectionURL, user, password);
}
public Object createTestConnection() {
return new JDBCTransactionConnection(createConnection());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy