I know that some database drivers and other libraries providing connection to external services are incompatible with coroutine-based network libraries. However, I couldn't find out if SQLAlchemy can be safely used with such libraries (namely, gevent), and if any workarounds should be applied to exclude possible errors.

Can you either tell me that or point me to an article where I can read this information? An additional 'thank you' if the provided answer also contains explanation of the mechanics of why it is okay or why it isn't. :-)

link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

Did you try searching gevent google group for SQLAlchemy?

I found this report of using SQLAlchemy + mysql-connector successfully and this of using SQLAlchemy + psycopg2 successfully (make sure you've read this)

I would think SQLAlchemy should be safe to use with gevent as long as the database driver that SQLAlchemy uses is safe, but I've not tried it myself and only basing this on the reports from other users.

link|improve this answer
Thank you, just the information I needed. And also thank you for developing gevent :) – David Parunakian Oct 30 '10 at 6:25
I recommend to use mysql.connector. psycopg2 can have some problems. – Creotiv Sep 16 '11 at 21:15
I used psycopg2 with gevent and did not encounter any problems. If you can reproduce them, feel free to post in gevent google group or issue tracker. – Denis Bilenko Sep 21 '11 at 11:50
feedback

Your Answer

 
or
required, but never shown

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