How do I use the Werkzeug framework without any ORM like SQLAlchemy? In my case, it's a lot of effort to rewrite all the tables and columns in SQLAlchemy from existing tables & data.

How do I query the database and make an object from the database output?

In my case now, I use Oracle with cx_Oracle. If you have a solution for MySQL, too, please mention it.

Thanks.

link|improve this question

67% accept rate
feedback

3 Answers

SQLAlchemy supports reflection so you don't have to do that. Take a look at the autoload parameter of Table, you can even make this work with the ORM.

link|improve this answer
feedback

Is it a problem to use normal DB API, issue regular SQL queries, etc? cx_Oracle even has connection pooling biolt in to help you manage connections.

link|improve this answer
maybe i'm not looking for plain query to oracle but something like models in codeigniter that for python. any idea?? – Arief Goldalworming Jan 30 '11 at 6:15
feedback
up vote 0 down vote accepted

maybe this is what i looking for http://www.sqlalchemy.org/trac/wiki/SqlSoup and ht*p://spyced.blogspot.com/2006/04/introducing-sqlsoup.html

so i don't have to declare the table to get the object

rp = db.bind.execute('select * from mupp') a = rp.fetchall() a[0].name

that's great...thanks for all inspiring response

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.