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
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
> 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
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
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
> 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
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.
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
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