def _insertSQL(self, table, names, values):
     if not names:
         assert not values
         # INSERT INTO table () VALUES () isn't allowed in
         # SQLite (though it is in other databases)
         return ("INSERT INTO %s VALUES (NULL)" % table)
     else:
         return DBAPI._insertSQL(self, table, names, values)
 def _insertSQL(self, table, names, values):
     if not names:
         assert not values
         # INSERT INTO table () VALUES () isn't allowed in
         # SQLite (though it is in other databases)
         return ("INSERT INTO %s VALUES (NULL)" % table)
     else:
         return DBAPI._insertSQL(self, table, names, values)