Skip to content

Commit 8739583

Browse files
committed
SQLite
1 parent fefeb72 commit 8739583

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1870,7 +1870,7 @@ with <con>:
18701870
```python
18711871
<con>.execute('<query>', <list/tuple>) # Replaces '?'s in query with values.
18721872
<con>.execute('<query>', <dict/namedtuple>) # Replaces ':<key>'s with values.
1873-
<con>.executemany('<query>', <coll_of_above>) # Runs execute() many times.
1873+
<con>.executemany('<query>', <coll_of_above>) # Runs execute() multiple times.
18741874
```
18751875

18761876
### Example

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1682,7 +1682,7 @@
16821682
<li><strong>Bools will be stored and returned as ints and dates as <a href="#encode">ISO formatted strings</a>.</strong></li>
16831683
</ul><pre><code class="python language-python hljs">&lt;con&gt;.execute(<span class="hljs-string">'&lt;query&gt;'</span>, &lt;list/tuple&gt;) <span class="hljs-comment"># Replaces '?'s in query with values.</span>
16841684
&lt;con&gt;.execute(<span class="hljs-string">'&lt;query&gt;'</span>, &lt;dict/namedtuple&gt;) <span class="hljs-comment"># Replaces ':&lt;key&gt;'s with values.</span>
1685-
&lt;con&gt;.executemany(<span class="hljs-string">'&lt;query&gt;'</span>, &lt;coll_of_above&gt;) <span class="hljs-comment"># Runs execute() many times.</span>
1685+
&lt;con&gt;.executemany(<span class="hljs-string">'&lt;query&gt;'</span>, &lt;coll_of_above&gt;) <span class="hljs-comment"># Runs execute() multiple times.</span>
16861686
</code></pre></div>
16871687

16881688

0 commit comments

Comments
 (0)