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

de.ec.sql.BeforeWhere Maven / Gradle / Ivy

There is a newer version: 1.2
Show newest version
package de.ec.sql;

public interface BeforeWhere extends QueryPart {

	default Where where() {
		return new Where(this);
	}

	default Where where(final ValueHolder values) {
		return where().values(values);
	}

	default Where where(final Where where) {
		return where.builder(this);
	}

	default Where whereSQL(final String sql) {
		return where().sql(sql);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy