Re: [SQLObject] a simple question and small code changes
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: Ian B. <ia...@co...> - 2003-04-02 19:10:26
|
On Wed, 2003-04-02 at 09:43, Peter Wilkinson wrote: > Hi. > I've just started having a look at SQLObject and so far very impressed > - seems nice and natural. > > I'm using the download from the website, not cvs, and can't find a way > to delete a row from the database, is there something that I'm > overlooking or is this not implemented yet? You can call .destroy() on the instance you want to kill. It should probably be a class method, as self-destruction isn't very pythonic... but anyway, it's there. > Also I've been using SQLite quite extensively lately and noticed a > couple of places in DBConnection.py that can be added to/changed. Cool, I've added those to CVS (haven't installed SQLite, so might still have a typo ;) Ian |