@@ -364,7 +364,7 @@ around [`sqlite3_prepare_v2()`][].
364364### ` database.createSQLTagStore([maxSize]) `
365365
366366<!-- YAML
367- added: REPLACEME
367+ added: v24.9.0
368368-->
369369
370370* ` maxSize ` {integer} The maximum number of prepared statements to cache.
@@ -554,7 +554,7 @@ over hand-crafted SQL strings when handling user input.
554554## Class: ` SQLTagStore `
555555
556556<!-- YAML
557- added: REPLACEME
557+ added: v24.9.0
558558-->
559559
560560This class represents a single LRU (Least Recently Used) cache for storing
@@ -573,7 +573,7 @@ class execute synchronously.
573573### ` sqlTagStore.all(sqlTemplate[, ...values]) `
574574
575575<!-- YAML
576- added: REPLACEME
576+ added: v24.9.0
577577-->
578578
579579* ` sqlTemplate ` {Template Literal} A template literal containing the SQL query.
@@ -585,7 +585,7 @@ Executes the given SQL query and returns all resulting rows as an array of objec
585585### ` sqlTagStore.get(sqlTemplate[, ...values]) `
586586
587587<!-- YAML
588- added: REPLACEME
588+ added: v24.9.0
589589-->
590590
591591* ` sqlTemplate ` {Template Literal} A template literal containing the SQL query.
@@ -598,7 +598,7 @@ Executes the given SQL query and returns the first resulting row as an object.
598598### ` sqlTagStore.iterate(sqlTemplate[, ...values]) `
599599
600600<!-- YAML
601- added: REPLACEME
601+ added: v24.9.0
602602-->
603603
604604* ` sqlTemplate ` {Template Literal} A template literal containing the SQL query.
@@ -610,7 +610,7 @@ Executes the given SQL query and returns an iterator over the resulting rows.
610610### ` sqlTagStore.run(sqlTemplate[, ...values]) `
611611
612612<!-- YAML
613- added: REPLACEME
613+ added: v24.9.0
614614-->
615615
616616* ` sqlTemplate ` {Template Literal} A template literal containing the SQL query.
@@ -622,7 +622,7 @@ Executes the given SQL query, which is expected to not return any rows (e.g., IN
622622### ` sqlTagStore.size() `
623623
624624<!-- YAML
625- added: REPLACEME
625+ added: v24.9.0
626626-->
627627
628628* Returns: {integer} The number of prepared statements currently in the cache.
@@ -632,7 +632,7 @@ A read-only property that returns the number of prepared statements currently in
632632### ` sqlTagStore.capacity `
633633
634634<!-- YAML
635- added: REPLACEME
635+ added: v24.9.0
636636-->
637637
638638* Returns: {integer} The maximum number of prepared statements the cache can hold.
@@ -642,7 +642,7 @@ A read-only property that returns the maximum number of prepared statements the
642642### ` sqlTagStore.db `
643643
644644<!-- YAML
645- added: REPLACEME
645+ added: v24.9.0
646646-->
647647
648648* {DatabaseSync} The ` DatabaseSync ` instance that created this ` SQLTagStore ` .
@@ -652,15 +652,15 @@ A read-only property that returns the `DatabaseSync` object associated with this
652652### ` sqlTagStore.reset() `
653653
654654<!-- YAML
655- added: REPLACEME
655+ added: v24.9.0
656656-->
657657
658658Resets the LRU cache, clearing all stored prepared statements.
659659
660660### ` sqlTagStore.clear() `
661661
662662<!-- YAML
663- added: REPLACEME
663+ added: v24.9.0
664664-->
665665
666666An alias for ` sqlTagStore.reset() ` .
0 commit comments