diff --git a/README.md b/README.md index f87bc0e..7f156c9 100644 --- a/README.md +++ b/README.md @@ -1828,7 +1828,7 @@ db.execute('', ) # Replaces ':'s with values db.executemany('', ) # Runs execute() many times. ``` * **Passed values can be of type str, int, float, bytes, None, bool, datetime.date or datetime.datetme.** -* **Bools will be stored and returned as ints and dates as ISO formatted strings.** +* **Bools will be stored and returned as ints and dates as [ISO formatted strings](#encode).** ### Example ```python diff --git a/index.html b/index.html index f184219..365a75e 100644 --- a/index.html +++ b/index.html @@ -1634,7 +1634,7 @@ db.executemany('<query>', <coll_of_abo
  • Passed values can be of type str, int, float, bytes, None, bool, datetime.date or datetime.datetme.
  • -
  • Bools will be stored and returned as ints and dates as ISO formatted strings.
  • +
  • Bools will be stored and returned as ints and dates as ISO formatted strings.

Example

>>> db = sqlite3.connect('test.db')
 >>> db.execute('create table t (a, b, c)')