Hi Guys,

I'm stumped with this and would appreciate any insight. I'm using

mysql.db = create_engine('mysql://%s:[EMAIL PROTECTED]/%s' % (config.DB_USER,
config.DB_PASS, config.DB_HOST, config.DB_NAME))
mysql.conn = mysql.db.connect()
mysql.conn.execute(qry)

I have three servers. Two application servers and one db server. One
application server has written to the db.

The problem is that the data is not seen by the second application
server. When I log into to mysql from my desktop I CAN see the data.
The problem goes away when I restart the application server with sql-
alchemy. I'm caching the mysql.db connection object.

Any ideas why I'm not seeing the data from sql-alchemy. I understand
that sql-alchemy does not cache data so that cannot be the problem.

Thanks,

Vineet


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to [EMAIL PROTECTED]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to