Commit cd27c25
committed
docs: fix SQLite tutorial CreateAuthor usage with RETURNING *
CreateAuthor is defined as :one with RETURNING *, so sqlc generates a
method that returns Author, not sql.Result. The tutorial incorrectly
called LastInsertId() on the result, which does not compile.
Use the returned Author (matching the PostgreSQL tutorial) and compare
the full structs after GetAuthor.
Fixes #44681 parent 22d878a commit cd27c25
1 file changed
Lines changed: 4 additions & 9 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
159 | 159 | | |
160 | 160 | | |
161 | 161 | | |
162 | | - | |
| 162 | + | |
163 | 163 | | |
164 | 164 | | |
165 | 165 | | |
166 | 166 | | |
167 | 167 | | |
168 | 168 | | |
169 | | - | |
170 | | - | |
171 | | - | |
172 | | - | |
173 | | - | |
174 | | - | |
| 169 | + | |
175 | 170 | | |
176 | 171 | | |
177 | | - | |
| 172 | + | |
178 | 173 | | |
179 | 174 | | |
180 | 175 | | |
181 | 176 | | |
182 | 177 | | |
183 | | - | |
| 178 | + | |
184 | 179 | | |
185 | 180 | | |
186 | 181 | | |
| |||
0 commit comments