File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -458,7 +458,7 @@ helps to avoid the overhead of repeatedly parsing and preparing the same SQL
458458statements.
459459
460460Tagged statements bind the placeholder values from the template literal as
461- parameters to the underlying prepared statement. That is to say,
461+ parameters to the underlying prepared statement. For example:
462462
463463``` js
464464tagStore .get ` SELECT ${ value} ` ;
@@ -470,8 +470,8 @@ is equivalent to
470470db .prepare (' SELECT ?' ).get (value);
471471```
472472
473- except that the tag store will cache the underlying prepared statement for
474- future use.
473+ However, in the first example, the tag store will cache the underlying prepared
474+ statement for future use.
475475
476476The tag store will match a statement from the cache if the query strings
477477(including the positions of any bound placeholders) are identical.
You can’t perform that action at this time.
0 commit comments