Class SQLInsertStatement.SQLInsertStatementBuilder

java.lang.Object
com.github.tadukoo.database.mysql.syntax.statement.SQLInsertStatement.SQLInsertStatementBuilder
All Implemented Interfaces:
SQLInsertStatement.Build, SQLInsertStatement.ColumnsAndValuesOrSelectStatement, SQLInsertStatement.Table
Enclosing class:
SQLInsertStatement

public static class SQLInsertStatement.SQLInsertStatementBuilder extends Object implements SQLInsertStatement.Table, SQLInsertStatement.ColumnsAndValuesOrSelectStatement, SQLInsertStatement.Build
A builder class used to build a SQLInsertStatement. It takes the following parameters:
SQL Insert Statement Parameters
Parameter Description Default or Required
table The table to insert into Required
columns The columns to insert into Defaults to empty list
values The values to insert Defaults to empty list - need either this or select statement
selectStmt The select statement to use for values to insert Defaults to null - need either this or values
Version:
Alpha v.0.3
Author:
Logan Ferree (Tadukoo)