Show
Ignore:
Timestamp:
01/27/08 18:21:57 (16 years ago)
Author:
jerome
Message:

Fixed string interpolation method.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/storages/sql.py

    r3301 r3302  
    828828        if limit : 
    829829            # TODO : LIMIT is not supported under DB2. 
    830             # TODO : so we must use something like " FETCH FIRST %i ROWS ONLY" % self.doQuote(int(limit)) 
     830            # TODO : so we must use something like " FETCH FIRST %s ROWS ONLY" % self.doQuote(int(limit)) 
    831831            query += " LIMIT %s" % self.doQuote(int(limit))  
    832832        jobs = []