Re: Pythonic wrappers for SQL?

2006-01-16 Thread Stian Soiland
On 1/14/06, EleSSaR^ [EMAIL PROTECTED] wrote: Kenneth McDonald si è profuso/a a scrivere su comp.lang.python tutte queste elucubrazioni: there any good libraries out there that let one write (basic) queries in a Pythonic syntax, rather than directly in SQL? You need an ORM. Beyond

Re: Pythonic wrappers for SQL?

2006-01-16 Thread Wade Leftwich
Steve Holden wrote: SQLObject is a very popuar object-relational mapper that works with a range of databases including SQLite. But SQL isn't actually that complicated to someone who's already learned Python! I maintain this page for students on the classes I teach, and it has some useful

Re: Pythonic wrappers for SQL?

2006-01-15 Thread BartlebyScrivener
Just to chime in with Steve Holden on taking the why-not-learn-SQL route. Chris Fehily's new book, SQL, A Visual QuickStart Guide (2nd Ed) is a masterpiece and goes well on the bookshelf with his equally lucid Python QuickStart Guide. Cheap, too, for what you get.

Re: Pythonic wrappers for SQL?

2006-01-14 Thread Lawrence Oluyede
Il 2006-01-14, Kenneth McDonald [EMAIL PROTECTED] ha scritto: I need to do some data manipulation, and SQLite is a nice little product for it, except of course that I'd need to write SQL. Are there any good libraries out there that let one write (basic) queries in a Pythonic syntax,

Re: Pythonic wrappers for SQL?

2006-01-14 Thread David Blewett
Quoting Kenneth McDonald [EMAIL PROTECTED]: I need to do some data manipulation, and SQLite is a nice little product for it, except of course that I'd need to write SQL. Are there any good libraries out there that let one write (basic) queries in a Pythonic syntax, rather than directly in

Re: Pythonic wrappers for SQL?

2006-01-14 Thread EleSSaR^
Kenneth McDonald si è profuso/a a scrivere su comp.lang.python tutte queste elucubrazioni: there any good libraries out there that let one write (basic) queries in a Pythonic syntax, rather than directly in SQL? You need an ORM. Beyond SQLAlchemy (I don't have experience with it) i would

Re: Pythonic wrappers for SQL?

2006-01-14 Thread David Pratt
Hi Kenneth. Try SQLAlchemy. Regards, David Kenneth McDonald wrote: I need to do some data manipulation, and SQLite is a nice little product for it, except of course that I'd need to write SQL. Are there any good libraries out there that let one write (basic) queries in a Pythonic

Re: Pythonic wrappers for SQL?

2006-01-14 Thread Steve Holden
Kenneth McDonald wrote: I need to do some data manipulation, and SQLite is a nice little product for it, except of course that I'd need to write SQL. Are there any good libraries out there that let one write (basic) queries in a Pythonic syntax, rather than directly in SQL? SQLObject

Pythonic wrappers for SQL?

2006-01-13 Thread Kenneth McDonald
I need to do some data manipulation, and SQLite is a nice little product for it, except of course that I'd need to write SQL. Are there any good libraries out there that let one write (basic) queries in a Pythonic syntax, rather than directly in SQL? Thanks, Ken --