Insert returns a new InsertBuilder with the given table name. See InsertBuilder.Into.
(into string)
| 62 | // |
| 63 | // See InsertBuilder.Into. |
| 64 | func Insert(into string) InsertBuilder { |
| 65 | return StatementBuilder.Insert(into) |
| 66 | } |
| 67 | |
| 68 | // Replace returns a new InsertBuilder with the statement keyword set to |
| 69 | // "REPLACE" and with the given table name. |
searching dependent graphs…