Re: [Tutor] Python DB

2006-02-07 Thread Matt Williams
You might also want to have a look at DABO; I don't know how well it work on a handheld, though. http://dabodev.com/about Matt ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] Python DB

2005-09-22 Thread Andrei
> The problem (I have) with SQL-type DB is that I cannot be sure ahead of > time of the exact data structure. The DB will be about patients, who > have diseases, and also have treatments.Clearly, I can't specify now > the exact structure of the table. The advantage of SQL is that you can > (in

Re: [Tutor] Python DB

2005-09-22 Thread Danny Yoo
On Thu, 22 Sep 2005, Matt Williams wrote: > The problem (I have) with SQL-type DB is that I cannot be sure ahead of > time of the exact data structure. The DB will be about patients, who > have diseases, and also have treatments.Clearly, I can't specify now > the exact structure of the table

Re: [Tutor] Python DB

2005-09-22 Thread paul brian
I would look quite seriously at SQLObject It is a bit rough round the edges but given a class defintion, it then creates the underlying SQL tables and handles the CRUD (create update delete) for you. I do not like this approach and prefer the other but equally nice ability it has to look at a dat

[Tutor] Python DB

2005-09-22 Thread Matt Williams
Dear List, Thanks for all the advice! Obviously, I'm still a bit torn, but some of the ideas looked good. In terms of spec, the DB can be fairly simple (single access, etc.). Lower dependency on other libraries is good. Also, it needs to be cross- platform. The problem (I have) with SQL-type DB

Re: [Tutor] Python DB

2005-09-22 Thread Ed Hotchkiss
i like MySQLdb - although I said that you hate MySQL. FreeSQL.org has a nice free MySQL server. I also have some example code if you would like from work that I did last week ...   -ed  On 9/22/05, Cedric BRINER <[EMAIL PROTECTED]> wrote: I love sqlobject.orgit this a wrapper between many sql imple

Re: [Tutor] Python DB

2005-09-22 Thread Cedric BRINER
I love sqlobject.org it this a wrapper between many sql implementation (mysql, postgresql..) and python. get a look. Ced. -- Cedric BRINER Geneva - Switzerland ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] Python DB

2005-09-22 Thread Pawel Kraszewski
Dnia czwartek, 22 września 2005 10:43, Matt Williams napisał: > I've been looking for a simple python based DB for a fairly simple app. > Only a single user, single access needed, but with a dynamic structure > (which needs to be extensible very easily). For pure Python implementation you might t

Re: [Tutor] Python DB

2005-09-22 Thread Kent Johnson
Matt Williams wrote: > Dear List, > > I've been looking for a simple python based DB for a fairly simple app. > Only a single user, single access needed, but with a dynamic structure > (which needs to be extensible very easily). > > Having googled and read some stuff, I seem to come down to a cho

Re: [Tutor] Python DB

2005-09-22 Thread Danny Yoo
On Thu, 22 Sep 2005, Matt Williams wrote: > I've been looking for a simple python based DB for a fairly simple app. > Only a single user, single access needed, but with a dynamic structure > (which needs to be extensible very easily). Hi Matt, What kind of data are you trying to represent? An

Re: [Tutor] Python DB

2005-09-22 Thread Christopher Arndt
Matt Williams schrieb: > These seem to be at the opposite end of the spectrum - so do others have > either comments on these options, or other suggestions. Well, I havn't use either yet, but I have some experience with SQL DBs. >From what I read on the website, Kirby seems like a nice idea, if you

[Tutor] Python DB

2005-09-22 Thread Matt Williams
Dear List, I've been looking for a simple python based DB for a fairly simple app. Only a single user, single access needed, but with a dynamic structure (which needs to be extensible very easily). Having googled and read some stuff, I seem to come down to a choice between KirbyBase (very nice an