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

prerna.util.sql.DerbyQueryUtil Maven / Gradle / Ivy

The newest version!
package prerna.util.sql;

public class DerbyQueryUtil extends AnsiSqlQueryUtil {

	DerbyQueryUtil() {
		super();
		setDbType(RdbmsTypeEnum.DERBY);
	}
	
	DerbyQueryUtil(String connectionUrl, String username, String password) {
		super(connectionUrl, username, password);
		setDbType(RdbmsTypeEnum.DERBY);
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy