Re: [SQLObject] Difference between new and a modified row
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
|
From: Kevin D. <da...@gm...> - 2005-08-21 17:06:07
|
On 8/20/05, jl...@ra... <jl...@ra...> wrote: > Hi everyone: >=20 > I'm new programing with SQLObject. >=20 > I want to now if a sqlobject instance has been loaded from the database o= r > is a instance created for a new record. Generally speaking, they look the same. When you create an instance, it is INSERTed into the database and then repopulated with a SELECT. Kevin |