From 87395836897d48128952768351399d5d3caa9e1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Wed, 14 Oct 2020 16:29:55 +0200 Subject: [PATCH] SQLite --- README.md | 2 +- index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cb8b501..c347cef 100644 --- a/README.md +++ b/README.md @@ -1870,7 +1870,7 @@ with : ```python .execute('', ) # Replaces '?'s in query with values. .execute('', ) # Replaces ':'s with values. -.executemany('', ) # Runs execute() many times. +.executemany('', ) # Runs execute() multiple times. ``` ### Example diff --git a/index.html b/index.html index 84b0a01..019524f 100644 --- a/index.html +++ b/index.html @@ -1682,7 +1682,7 @@ CompletedProcess(args=['bc', ISO formatted strings.
<con>.execute('<query>', <list/tuple>)          # Replaces '?'s in query with values.
 <con>.execute('<query>', <dict/namedtuple>)     # Replaces ':<key>'s with values.
-<con>.executemany('<query>', <coll_of_above>)   # Runs execute() many times.
+<con>.executemany('<query>', <coll_of_above>)   # Runs execute() multiple times.