Re: Please Explain This Error
Christian Boos <[email protected]>
| Newsgroups | gmane.comp.python.db.pysqlite.user |
|---|---|
| Message-ID | <[email protected]> |
Rich Shepard wrote:
> ...
>
> natComp = []
> self.cur.execute("select * from component where category=natural;")
cur.execute("select * from component where category=natural;")
> row = cur.fetchone()
From the limited context you gave, it seems to be a simple typo, isn't it?
-- Christian