com.databasesandlife.util.jdbc.DbQueryable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-common Show documentation
Show all versions of java-common Show documentation
Utility classes developed at Adrian Smith Software (A.S.S.)
package com.databasesandlife.util.jdbc;
import java.util.List;
import com.databasesandlife.util.jdbc.DbTransaction.DbQueryResultSet;
/**
* @author This source is copyright Adrian Smith and licensed under the LGPL 3.
* @see Project on GitHub
*/
public interface DbQueryable {
DbQueryResultSet query(final String sql, final Object... args);
DbQueryResultSet query(CharSequence sql, List> args);
}