New submission from Tore Anderson <t...@fud.no>:
In https://docs.python.org/3/library/sqlite3.html, the following example code is found: > # Do this instead > t = ('RHAT',) > c.execute('SELECT * FROM stocks WHERE symbol=?', t) > print(c.fetchone()) However this fails as follows: > Traceback (most recent call last): > File "./test.py", line 8, in <module> > print(c.fetchone()) > AttributeError: 'sqlite3.Connection' object has no attribute 'fetchone' I believe the correct code should have been (at least it works for me): > # Do this instead > t = ('RHAT',) > cursor = c.execute('SELECT * FROM stocks WHERE symbol=?', t) > print(cursor.fetchone()) Tore ---------- assignee: docs@python components: Documentation messages: 388078 nosy: docs@python, toreanderson priority: normal severity: normal status: open title: Non-existent method sqlite3.Connection.fetchone() used in docs versions: Python 3.9 _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue43396> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com