Class SetClauseList
java.lang.Object
org.h2.command.dml.SetClauseList
- All Implemented Interfaces:
HasSQL
-
Field Summary
Fields inherited from interface HasSQL
ADD_PLAN_INFORMATION, DEFAULT_SQL_FLAGS, NO_CASTS, QUOTE_ONLY_WHEN_REQUIRED, REPLACE_LOBS_FOR_TRACE, TRACE_SQL_FLAGS -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddMultiple(ArrayList<Column> columns, Expression expression) Add multiple columns.voidaddSingle(Column column, Expression expression) Add a single column.getSQL(StringBuilder builder, int sqlFlags) Appends the SQL statement of this object to the specified builder.Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface HasSQL
getSQL, getTraceSQL
-
Constructor Details
-
SetClauseList
-
-
Method Details
-
addSingle
Add a single column.- Parameters:
column- the columnexpression- the expression
-
addMultiple
Add multiple columns.- Parameters:
columns- the columnsexpression- the expression (e.g. an expression list)
-
getSQL
Description copied from interface:HasSQLAppends the SQL statement of this object to the specified builder.
-