Skip to content

Commit

Permalink
Updates readme
Browse files Browse the repository at this point in the history
  • Loading branch information
pchemguy authored Jan 4, 2025
1 parent ee1e892 commit 9305baa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ At the same time, SQLite provides several tools which help compensate for the me

CTEs provide a powerful means for structuring complex queries into simple reusable code blocks, simplifying the development process and readability of the code. CTEs also make it possible to conveniently interrogate any intermediate code block without the need to make changes to the CTEs section. Intermediate queries may also be replaced with mocks constructed from immediate values, making it possible to verify the functionality of different code sections and develop them independently. The JSON library extends string manipulation capabilities, while parameterized queries help encapsulate SQL code. Single row queries constructed from immediate values placed within the CTEs clause may act as surrogate variables. Later, these values can be replaced with named parameters, yielding parameterized queries. The combination of CTEs, JSON, and parameterized queries permits an even higher degree of SQL code encapsulation with a JSON-based structured SQL interface and certain input flexibility.

See also this gist ([Exploring Zotero Data Model for Direct Database Access][Zotero Data Model]), discussing the Zotero Data Model and providing sample SQL snippets for retrieving the data.
See also this gist ([Exploring Zotero Data Model for Direct Database Access][Zotero Data Model]), discussing the Zotero Data Model and providing sample SQL snippets for retrieving the data. The new separate [SQLiteMP][] project demonstrates a further developed proof-of-concept implementation of a materialized paths (MPs) data model for hierarchy management in SQLite.

<!-- References -->

Expand All @@ -19,4 +19,4 @@ See also this gist ([Exploring Zotero Data Model for Direct Database Access][Zot
[Parameterized queries]: https://sqlite.org/lang_expr.html#varparam
[fWin]: https://sqlite.org/windowfunctions.html
[Zotero Data Model]: https://gist.github.com/pchemguy/19fa69fb4e74ef0cca0026aa0dbf5f42
[SQLiteMP]: https://github.com/pchemguy/SQLiteMP

0 comments on commit 9305baa

Please sign in to comment.