(ctx context.Context, query string, args ...interface{})
| 121 | func (SQLiteDialect) InsertReturningID(ctx context.Context, execer interface{}, query string, args ...interface{}) (int64, error) { |
| 122 | type dbExecer interface { |
| 123 | ExecContext(ctx context.Context, query string, args ...interface{}) (sql.Result, error) |
| 124 | } |
| 125 | e, ok := execer.(dbExecer) |
| 126 | if !ok { |
no outgoing calls