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

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

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

public interface BeforeInsert extends QueryPart {

	default Insert insert(final String table) {
		return new Insert(this, table);
	}

	default Insert insert(final Table table) {
		return insert(table.tableName());
	}

	default Insert insert(final Insert insert) {
		return insert.builder(this);
	}

	default Insert insertSQL(final String sql) {
		return insert((String) null).sql(sql);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy