IntegerAutoIncrInserter is implemented by dialects that can perform inserts with automatically incremented integer primary keys. If the dialect can handle automatic assignment of more than just integers, see TargetedAutoIncrInserter.
| 72 | // the dialect can handle automatic assignment of more than just |
| 73 | // integers, see TargetedAutoIncrInserter. |
| 74 | type IntegerAutoIncrInserter interface { |
| 75 | InsertAutoIncr(exec SqlExecutor, insertSql string, params ...interface{}) (int64, error) |
| 76 | } |
| 77 | |
| 78 | // TargetedAutoIncrInserter is implemented by dialects that can |
| 79 | // perform automatic assignment of any primary key type (i.e. strings |
no outgoing calls
no test coverage detected
searching dependent graphs…