summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 24fb1ad)
raw | patch | inline | side by side (parent: 24fb1ad)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 19 Sep 2002 03:56:20 +0000 (03:56 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 19 Sep 2002 03:56:20 +0000 (03:56 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1196 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/backends/rdbms_common.py | patch | blob | history |
index 3eb9ab2fd3fdb7726e0683502ceb87458512d4de..da0cf9f890dfc59cb0713f63692cb25454bca995 100644 (file)
-# $Id: rdbms_common.py,v 1.4 2002-09-19 03:39:48 richard Exp $
+# $Id: rdbms_common.py,v 1.5 2002-09-19 03:56:20 richard Exp $
# standard python modules
import sys, os, time, re, errno, weakref, copy
if __debug__:
print >>hyperdb.DEBUG, 'filter', (self, sql, args)
cursor = self.db.conn.cursor()
- print (sql, args)
cursor.execute(sql, args)
l = cursor.fetchall()
- print l
# return the IDs (the first column)
# XXX The filter(None, l) bit is sqlite-specific... if there's _NO_