Re: EVOLUTION - Add Field Schema Evolution Support

2006-05-30 Thread Ilias Lazaridis
Ilias Lazaridis wrote: > After reviewing the relevant source code base a little, I have started > with the implementation of the schema evolution skeleton (which will > contain a functional "Add Field" support). > > http://case.lazaridis.com/multi/wiki/DjangoSchemaEvolution > > With a very sma

Re: EVOLUTION - Add Field Schema Evolution Support

2006-05-30 Thread Ilias Lazaridis
oggie rob wrote: >> It would be nice if I could have an answer on this, >> thus I can avoid redundant effort. > > Perhaps there would be more confidence in your efforts if it: > a) Wasn't making someone else's work redundant > b) Came from some detailed design > c) Worked on all databases befor

Re: EVOLUTION - Add Field Schema Evolution Support

2006-05-30 Thread oggie rob
> It would be nice if I could have an answer on this, thus I can avoid > redundant effort. Perhaps there would be more confidence in your efforts if it: a) Wasn't making someone else's work redundant b) Came from some detailed design c) Worked on all databases before being checked in If you pos

Re: EVOLUTION - Add Field Schema Evolution Support

2006-05-30 Thread Ilias Lazaridis
Ilias Lazaridis wrote: > After reviewing the relevant source code base a little, I have started > with the implementation of the schema evolution skeleton (which will > contain a functional "Add Field" support). > > http://case.lazaridis.com/multi/wiki/DjangoSchemaEvolution > > With a very sma

Re: EVOLUTION - Add Field Schema Evolution Support

2006-05-29 Thread Ilias Lazaridis
DavidA wrote: >> I am wondering how to retrieve a collection of columns within a table, >> whilst using the standard python dbapi2 functionality. > > Do you mean cursor.description? > > cursor = connection.cursor() > cursor.execute('select * from blog_post where 1 = 0') > for col in cursor.descr

Re: EVOLUTION - Add Field Schema Evolution Support

2006-05-29 Thread DavidA
> I am wondering how to retrieve a collection of columns within a table, > whilst using the standard python dbapi2 functionality. Do you mean cursor.description? cursor = connection.cursor() cursor.execute('select * from blog_post where 1 = 0') for col in cursor.description: print col Each

Re: EVOLUTION - Add Field Schema Evolution Support

2006-05-29 Thread Ilias Lazaridis
James Bennett wrote: > On 5/29/06, Ilias Lazaridis <[EMAIL PROTECTED]> wrote: >> The "Add Field" functionality is nearly ready. > > You are aware that a full implementation of schema evolution for > Django was accepted as a Google Summer of Code project, right? Yes, I am. http://case.lazaridis.

Re: EVOLUTION - Add Field Schema Evolution Support

2006-05-29 Thread James Bennett
On 5/29/06, Ilias Lazaridis <[EMAIL PROTECTED]> wrote: > The "Add Field" functionality is nearly ready. You are aware that a full implementation of schema evolution for Django was accepted as a Google Summer of Code project, right? -- "May the forces of evil become confused on the way to your h

Re: EVOLUTION - Add Field Schema Evolution Support

2006-05-29 Thread Ilias Lazaridis
Ilias Lazaridis wrote: > After reviewing the relevant source code base a little, I have started > with the implementation of the schema evolution skeleton (which will > contain a functional "Add Field" support). > > http://case.lazaridis.com/multi/wiki/DjangoSchemaEvolution > > With a very sma