Re: Python Database Apps

2007-09-16 Thread Prateek
On Sep 14, 1:00 am, Jonathan Gardner <[EMAIL PROTECTED]> wrote: > On Sep 12, 9:38 pm, Prateek <[EMAIL PROTECTED]> wrote: > > > Have you checked out Brainwave?http://www.brainwavelive.com > > > We provide a schema-free non-relational database bundled with an app > > server which is basically CherryP

Re: Python Database Apps

2007-09-13 Thread Jonathan Gardner
On Sep 12, 9:38 pm, Prateek <[EMAIL PROTECTED]> wrote: > Have you checked out Brainwave?http://www.brainwavelive.com > > We provide a schema-free non-relational database bundled with an app > server which is basically CherryPy with a few enhancements (rich JS > widgets, Cheetah/Clearsilver template

Re: Python Database Apps

2007-09-13 Thread Jonathan Gardner
On Sep 11, 5:56 am, Harry George <[EMAIL PROTECTED]> wrote: > I use postgresql as well. I wonder if Pythonistas do so out of > concern for rigor, clarity, and scalability. It works fine for a > quick one-off effort and still works fine after scaling to a DBMS > server supporting lots of clients,

Re: Python Database Apps

2007-09-12 Thread Prateek
On Sep 13, 4:55 am, Ed Leafe <[EMAIL PROTECTED]> wrote: > On Sep 12, 2007, at 10:53 AM, [EMAIL PROTECTED] wrote: > > > Thanks for ideas Ed. I am checking out dabo now. I do have a few > > questions about it. Packaging. Is it easy to package into a quick > > install for windows. The users are g

Re: Python Database Apps

2007-09-12 Thread Ed Leafe
On Sep 12, 2007, at 10:53 AM, [EMAIL PROTECTED] wrote: > Thanks for ideas Ed. I am checking out dabo now. I do have a few > questions about it. Packaging. Is it easy to package into a quick > install for windows. The users are going to want to get too in > depth. py2exe is your frien

Re: Python Database Apps

2007-09-12 Thread [EMAIL PROTECTED]
On Sep 12, 8:39 am, Ed Leafe <[EMAIL PROTECTED]> wrote: > On Sep 11, 2007, at 2:56 PM, [EMAIL PROTECTED] wrote: > > > It's gonna be a desktop app. The > > database engine is going to be the critical component. I like sqlite > > so that I don't need a database server on the client side. It would

Re: Python Database Apps

2007-09-12 Thread Goldfish
I use MySQL and also sqlite. However, I also use Spring Python (http:// springpython.python-hosting.com) to use both its DatabaseTemplate utility class and also the remoting functionality. This way, I can have the database code sitting on the server, and then export the data access functions remote

Re: Python Database Apps

2007-09-12 Thread Ed Leafe
On Sep 11, 2007, at 2:56 PM, [EMAIL PROTECTED] wrote: > It's gonna be a desktop app. The > database engine is going to be the critical component. I like sqlite > so that I don't need a database server on the client side. It would > help though if there is a way to sync between multiple clients

Re: Python Database Apps

2007-09-11 Thread Steve Holden
Harry George wrote: > Tom Brown <[EMAIL PROTECTED]> writes: > >> On Monday 10 September 2007 19:52, [EMAIL PROTECTED] wrote: >>> Kindof a poll, kindof curiosity... >>> >>> What is your favorite python - database combination? I'm looking to >>> make an app that has a local DB and a server side DB.

Re: Python Database Apps

2007-09-11 Thread Harry George
Tom Brown <[EMAIL PROTECTED]> writes: > On Monday 10 September 2007 19:52, [EMAIL PROTECTED] wrote: >> Kindof a poll, kindof curiosity... >> >> What is your favorite python - database combination? I'm looking to >> make an app that has a local DB and a server side DB. I'm looking at >> python an

Re: Python Database Apps

2007-09-11 Thread Bruno Desthuilliers
Tom Brown a écrit : > On Monday 10 September 2007 19:52, [EMAIL PROTECTED] wrote: > >>Kindof a poll, kindof curiosity... >> >>What is your favorite python - database combination? I'm looking to >>make an app that has a local DB and a server side DB. I'm looking at >>python and sqlite local side

Re: Python Database Apps

2007-09-11 Thread Ivo
[EMAIL PROTECTED] wrote: > Kindof a poll, kindof curiosity... > > What is your favorite python - database combination? I'm looking to > make an app that has a local DB and a server side DB. I'm looking at > python and sqlite local side and sql server side. > > Any suggestions > > Darien >

Re: Python Database Apps

2007-09-11 Thread David
> It would help to get a feel of what is the most popular combination > for people to develop their apps. It's gonna be a desktop app. The > database engine is going to be the critical component. I like sqlite > so that I don't need a database server on the client side. It would > help though i

Re: Python Database Apps

2007-09-11 Thread Jonathan Gardner
On Sep 11, 1:39 pm, Jonathan Gardner <[EMAIL PROTECTED]> wrote: > > For client-side apps, managing a PostgreSQL installation might be > asking too much. But for a web site or web service, I absolutely > recommend it. I should mention that I wrote a medical billing software app (client side--PyQt)

Re: Python Database Apps

2007-09-11 Thread Jonathan Gardner
On Sep 11, 1:07 pm, Tom Brown <[EMAIL PROTECTED]> wrote: > > I have had a lot of good luck with PostgreSQL. It is easy to install and use. > It is also very stable. It maybe overkill for a client side database. The > psycopg package makes interfacing to PostgreSQL very easy and there is a > package

Re: Python Database Apps

2007-09-11 Thread Tom Brown
On Monday 10 September 2007 19:52, [EMAIL PROTECTED] wrote: > Kindof a poll, kindof curiosity... > > What is your favorite python - database combination? I'm looking to > make an app that has a local DB and a server side DB. I'm looking at > python and sqlite local side and sql server side. > > A

Re: Python Database Apps

2007-09-11 Thread [EMAIL PROTECTED]
On Sep 11, 9:25 am, Ed Leafe <[EMAIL PROTECTED]> wrote: > On Sep 10, 2007, at 10:52 PM, [EMAIL PROTECTED] wrote: > > > Kindof a poll, kindof curiosity... > > > What is your favorite python - database combination? I'm looking to > > make an app that has a local DB and a server side DB. I'm looking

Re: Python Database Apps

2007-09-11 Thread Ed Leafe
On Sep 10, 2007, at 10:52 PM, [EMAIL PROTECTED] wrote: > Kindof a poll, kindof curiosity... > > What is your favorite python - database combination? I'm looking to > make an app that has a local DB and a server side DB. I'm looking at > python and sqlite local side and sql server side.

Re: Python Database Apps

2007-09-11 Thread David
> What is your favorite python - database combination? I'm looking to > make an app that has a local DB and a server side DB. I'm looking at > python and sqlite local side and sql server side. > > Any suggestions I like to use elixir [1] on top of sqlalchemy [2] [1] http://elixir.ematia.de/

Re: Python Database Apps

2007-09-11 Thread Uwe Grauer
[EMAIL PROTECTED] wrote: > Kindof a poll, kindof curiosity... > > What is your favorite python - database combination? I'm looking to > make an app that has a local DB and a server side DB. I'm looking at > python and sqlite local side and sql server side. > > Any suggestions > > Darien >