Test for .execute_fn(), refs #685

This commit is contained in:
Simon Willison 2020-05-08 10:29:17 -07:00
commit 2694ddcf14
2 changed files with 12 additions and 2 deletions

View file

@ -166,7 +166,7 @@ Example usage:
.. code-block:: python
def get_version(conn);
def get_version(conn):
return conn.execute(
"select sqlite_version()"
).fetchall()[0][0]