Re: Creating database structures in a portable way

2006-09-19 Thread Samuel
> > SQLAlchemy looks pretty good, but unfortunately apparently requires > > shell access for installation (or at least, I have not found any other > > solution covered in the docs), which I can not use. > > It doesn't use binaries AFAIK, so just copying should work as well. Indeed, from browsing t

Re: Creating database structures in a portable way

2006-09-18 Thread Bruno Desthuilliers
Samuel a écrit : >>FWIW, there's a Python port of adodb: >>http://phplens.com/lens/adodb/adodb-py-docs.htm >> >>and parsing XML in Python is quite easy. So you could as well port the >>AdoDB XML to Python too. > > > That is exactly what I am trying to avoid. While implementing the > parser might

Re: Creating database structures in a portable way

2006-09-18 Thread Samuel
> FWIW, there's a Python port of adodb: > http://phplens.com/lens/adodb/adodb-py-docs.htm > > and parsing XML in Python is quite easy. So you could as well port the > AdoDB XML to Python too. That is exactly what I am trying to avoid. While implementing the parser might be easy, you have to transl

Re: Creating database structures in a portable way

2006-09-18 Thread Bruno Desthuilliers
Samuel wrote: > Hi, > > I am looking for a library that takes an XML file that specifies a > table structure, and generates the CREATE/DROP/ALTER SQL statements to > create the tables in the database. > > In particular, I am trying to port a PHP application that currently > uses the AdoDB XML sch

Creating database structures in a portable way

2006-09-18 Thread Samuel
Hi, I am looking for a library that takes an XML file that specifies a table structure, and generates the CREATE/DROP/ALTER SQL statements to create the tables in the database. In particular, I am trying to port a PHP application that currently uses the AdoDB XML schema: > http://phplens.com/len