de.jaggl.sqlbuilder.queries.ExecutableQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sqlbuilder-core Show documentation
Show all versions of sqlbuilder-core Show documentation
A Java-Library to build SQL-Statements
package de.jaggl.sqlbuilder.queries;
import de.jaggl.sqlbuilder.queryexecutor.QueryExecutor;
/**
* @author Martin Schumacher
*
* @since 2.5.0
*/
public interface ExecutableQuery extends Query
{
default void execute(QueryExecutor queryExecutor)
{
queryExecutor.execute(this);
}
}