Hi;
The following code works fine. I would like you to suggest something more
simple and elegant:

      sql = 'select p.ID from %sPackages p join %sCategoriesPackages c where
c.CategoryID=%s;' % (store, store, categoryID)
      cursor.execute(sql)
      tmp = [itm[0] for itm in cursor]
      packageIDs = []
      for t in tmp:
        if t not in packageIDs:
          packageIDs.append(t)

TIA,
beno

-- 
The Logos has come to bear
http://logos.13gems.com/
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to