Example #1
0
        public InsertIntoTableAdvanced InsertInto(Table table)
        {
            var stm    = new InsertStatement(this);
            var clause = new InsertIntoTableAdvanced(stm, table);

            stm.FirstFragment = clause;
            return(clause);
        }
Example #2
0
 public void InsertIntoTableAdvanced(SqlFragment parent, InsertIntoTableAdvanced insertIntoTableAdvanced)
 {
     this.Script.LineAppendLine(TSqlKeyword.INSERT_INTO);
     this.Script.AppendFragment(insertIntoTableAdvanced.Table, insertIntoTableAdvanced, this);
 }