Changeset 3293
- Timestamp:
- 01/14/08 00:55:47 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/pykota/storages/sql.py
r3292 r3293 825 825 query += " ORDER BY jobhistory.id DESC" 826 826 if limit : 827 query += " LIMIT %s" % self.doQuote(int(limit)) 827 query += " LIMIT %s" % self.doQuote(int(limit)) # TODO : LIMIT is not supported under DB2. 828 828 jobs = [] 829 829 result = self.doSearch(query)