Arrgh, sorry for that post! self._dbc.execute(q, data)
where data is None, works with MySQL. For SQLite I have to write if data is not None: self._dbc.execute(q, data) else: self._dbc.execute(q) Sorry again, Franz GEIGER "F. GEIGER" <[EMAIL PROTECTED]> schrieb im Newsbeitrag news:[EMAIL PROTECTED] > Im on Python 2.3.4, using pysqlite 2.0.0 (final). > > When I try to execute > > self._dbc.execute(q, data) > > where q is 'select count(*) from Difflets ' and date is None > > I get the following exception: > > pysqlite2.dbapi2.ProgrammingError: Incorrect number of bindings supplied. > The current statement uses 0, and there are -1 supplied. > > Any ideas? > > Many thanks in advance and kind regards > Franz GEIGER > > > -- http://mail.python.org/mailman/listinfo/python-list