@@ -354,7 +354,7 @@ around [`sqlite3_prepare_v2()`][].
354354### ` database.createSQLTagStore([maxSize]) `
355355
356356<!-- YAML
357- added: REPLACEME
357+ added: v24.9.0
358358-->
359359
360360* ` maxSize ` {integer} The maximum number of prepared statements to cache.
@@ -544,7 +544,7 @@ over hand-crafted SQL strings when handling user input.
544544## Class: ` SQLTagStore `
545545
546546<!-- YAML
547- added: REPLACEME
547+ added: v24.9.0
548548-->
549549
550550This class represents a single LRU (Least Recently Used) cache for storing
@@ -563,7 +563,7 @@ class execute synchronously.
563563### ` sqlTagStore.all(sqlTemplate[, ...values]) `
564564
565565<!-- YAML
566- added: REPLACEME
566+ added: v24.9.0
567567-->
568568
569569* ` sqlTemplate ` {Template Literal} A template literal containing the SQL query.
@@ -575,7 +575,7 @@ Executes the given SQL query and returns all resulting rows as an array of objec
575575### ` sqlTagStore.get(sqlTemplate[, ...values]) `
576576
577577<!-- YAML
578- added: REPLACEME
578+ added: v24.9.0
579579-->
580580
581581* ` sqlTemplate ` {Template Literal} A template literal containing the SQL query.
@@ -588,7 +588,7 @@ Executes the given SQL query and returns the first resulting row as an object.
588588### ` sqlTagStore.iterate(sqlTemplate[, ...values]) `
589589
590590<!-- YAML
591- added: REPLACEME
591+ added: v24.9.0
592592-->
593593
594594* ` sqlTemplate ` {Template Literal} A template literal containing the SQL query.
@@ -600,7 +600,7 @@ Executes the given SQL query and returns an iterator over the resulting rows.
600600### ` sqlTagStore.run(sqlTemplate[, ...values]) `
601601
602602<!-- YAML
603- added: REPLACEME
603+ added: v24.9.0
604604-->
605605
606606* ` sqlTemplate ` {Template Literal} A template literal containing the SQL query.
@@ -612,7 +612,7 @@ Executes the given SQL query, which is expected to not return any rows (e.g., IN
612612### ` sqlTagStore.size() `
613613
614614<!-- YAML
615- added: REPLACEME
615+ added: v24.9.0
616616-->
617617
618618* Returns: {integer} The number of prepared statements currently in the cache.
@@ -622,7 +622,7 @@ A read-only property that returns the number of prepared statements currently in
622622### ` sqlTagStore.capacity `
623623
624624<!-- YAML
625- added: REPLACEME
625+ added: v24.9.0
626626-->
627627
628628* Returns: {integer} The maximum number of prepared statements the cache can hold.
@@ -632,7 +632,7 @@ A read-only property that returns the maximum number of prepared statements the
632632### ` sqlTagStore.db `
633633
634634<!-- YAML
635- added: REPLACEME
635+ added: v24.9.0
636636-->
637637
638638* {DatabaseSync} The ` DatabaseSync ` instance that created this ` SQLTagStore ` .
@@ -642,15 +642,15 @@ A read-only property that returns the `DatabaseSync` object associated with this
642642### ` sqlTagStore.reset() `
643643
644644<!-- YAML
645- added: REPLACEME
645+ added: v24.9.0
646646-->
647647
648648Resets the LRU cache, clearing all stored prepared statements.
649649
650650### ` sqlTagStore.clear() `
651651
652652<!-- YAML
653- added: REPLACEME
653+ added: v24.9.0
654654-->
655655
656656An alias for ` sqlTagStore.reset() ` .
0 commit comments