On Mar 2, 2007, at 7:57 PM, Ken Dibble wrote:

> The contents of a tuple are immutable, right? How is the deletion of
> records handled in the dataset?

        In pseudo-code:

tmp = list(dataset)
tmp.remove(badrecordnum)
dataset = tuple(list)

        It would be much easier if everything were in lists, but the dbapi  
specifies that tuples are returned.

-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com



_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users

Reply via email to