Class InsertStatement


  • public class InsertStatement
    extends SQLStatement
    SQL INSERT Statement representation. This will create a statement like
     INSERT INTO {tbl} (col1, col2, ...)
     SELECT ...
     
    TODO Support INSERT INTO {tbl} (col1, col2, ...) VALUES (...)
    • Constructor Detail

      • InsertStatement

        public InsertStatement​(RDBMSStoreManager rdbmsMgr,
                               Table table,
                               DatastoreIdentifier alias,
                               String tableGroupName,
                               Map<String,​Object> extensions)
        Constructor for an INSERT statement.
        Parameters:
        rdbmsMgr - Store Manager
        table - The primary table to INSERT
        alias - Alias for the primary table
        tableGroupName - Group name for the primary table
        extensions - Any extensions (optional)