On Mon, Mar 10, 2008 at 05:00:19PM +, Luke Opperman wrote:
> (Oleg, the SQLBuilder.SQLObjectTable.__getattr__ stuff we pulled out for its
> bad
> interaction with FKs was also targetted at this sort of request, specifically
> for not needing to declare the intermediate tables. If someone wants
Oleg Broytmann phd.pp.ru> writes:
>
> On Mon, Mar 10, 2008 at 08:57:35AM -0700, Daniel Fetchinson wrote:
> > On Mon, Mar 10, 2008 at 3:12 AM, Oleg Broytmann phd.pp.ru> wrote:
> > > On Sun, Mar 09, 2008 at 08:52:28PM -0700, Daniel Fetchinson wrote:
> > > > class zoo( SQLObject ):
> > > > cag
On Mon, Mar 10, 2008 at 08:57:35AM -0700, Daniel Fetchinson wrote:
> On Mon, Mar 10, 2008 at 3:12 AM, Oleg Broytmann <[EMAIL PROTECTED]> wrote:
> > On Sun, Mar 09, 2008 at 08:52:28PM -0700, Daniel Fetchinson wrote:
> > > class zoo( SQLObject ):
> > > cages = MultipleJoin( 'cage' )
> > >
> > > c
On Mon, Mar 10, 2008 at 3:12 AM, Oleg Broytmann <[EMAIL PROTECTED]> wrote:
> On Sun, Mar 09, 2008 at 08:52:28PM -0700, Daniel Fetchinson wrote:
> > class zoo( SQLObject ):
> > cages = MultipleJoin( 'cage' )
> >
> > class cage( SQLObject ):
> > zoo = ForeignKey( 'zoo' )
> > animals = Mu
On Mon, Mar 10, 2008 at 03:11:42PM +0100, cedric briner wrote:
> Is there some
> places where we can find some more complex example that the one shown in
> the main documentation. I mean a little bit more complicated and with
> good comments.
Alas, no! There were two failed attempts to maint
Oleg Broytmann wrote:
> On Mon, Mar 10, 2008 at 02:16:46PM +0100, cedric briner wrote:
>> sqlobject=9.4
>>
>> class Person(SQLObject):
>> sn = UnicodeCol()
>> guarantor = ForeignKey('Person')
>> #
>> # guaranteds ; the opposed of guarantor like guest/host
>> guaranteds = Multipl
On Mon, Mar 10, 2008 at 02:16:46PM +0100, cedric briner wrote:
> sqlobject=9.4
>
> class Person(SQLObject):
> sn = UnicodeCol()
> guarantor = ForeignKey('Person')
> #
> # guaranteds ; the opposed of guarantor like guest/host
> guaranteds = MultipleJoin('person')
>
> boss = Per
sqlobject=9.4
hello,
the documentation you have only treat of Related Join and Multiple Join
between two classes. But I didn't successfuly transpose your
documentation/example on a self class.
I'm trying to have a class person such as
-- code -
class Person(SQ
Hello!
I'm pleased to announce the 0.9.5, a minor bug fix release of SQLObject.
What is SQLObject
=
SQLObject is an object-relational mapper. Your database tables are described
as classes, and rows are instances of those classes. SQLObject is meant to be
easy to use and quick
On Sun, Mar 09, 2008 at 08:52:28PM -0700, Daniel Fetchinson wrote:
> class zoo( SQLObject ):
> cages = MultipleJoin( 'cage' )
>
> class cage( SQLObject ):
> zoo = ForeignKey( 'zoo' )
> animals = MultipleJoin( 'animal' )
> properties = RelatedJoin( 'property' )
>
> class animal( SQ
10 matches
Mail list logo