Update notes for 2018-09-24

This commit is contained in:
2018-09-24 16:24:35 +03:00
parent 1814a1f064
commit 8521594ea0
3 changed files with 14 additions and 8 deletions

View File

@ -430,5 +430,8 @@ sqlite> INSERT INTO items(id, views) VALUES(0, 7) ON CONFLICT(id) DO UPDATE SET
- This totally works!
- Note the special `excluded.views` form! See [SQLite's lang_UPSERT documentation](https://www.sqlite.org/lang_UPSERT.html)
- Oh nice, I finally finished the Falcon API route to page through all the results using SQLite's amazing `LIMIT` and `OFFSET` support
- But when I deployed it on my Ubuntu 16.04 environment I realized Ubuntu's SQLite is old and doesn't support `UPSERT`, so my indexing doesn't work...
- Apparently `UPSERT` came in SQLite 3.24.0 (2018-06-04), and Ubuntu 16.04 has 3.11.0
<!-- vim: set sw=2 ts=2: -->