![JAR search and dependency download from the Maven repository](/logo.png)
de.ec.sql.BeforeInsert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sqlbuilder Show documentation
Show all versions of sqlbuilder Show documentation
Java builder to create SQL statements
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