Insert returns a InsertBuilder for this StatementBuilderType.
(into string)
| 12 | |
| 13 | // Insert returns a InsertBuilder for this StatementBuilderType. |
| 14 | func (b StatementBuilderType) Insert(into string) InsertBuilder { |
| 15 | return InsertBuilder(b).Into(into) |
| 16 | } |
| 17 | |
| 18 | // Replace returns a InsertBuilder for this StatementBuilderType with the |
| 19 | // statement keyword set to "REPLACE". |
no test coverage detected