MySQLdb

Tim Chase python.list at tim.thechases.com
Tue Jan 29 11:38:15 EST 2008


> i have problem manipulating mySQL data. When i add values in a Table,
> i can recieve them instantly but when i check the table from another
> script, the new values dont exist.

Depending on your transaction settings (both on your mysql
connection object in code, and the engine used for the table(s)
in mysql's DB), you may have to commit your transaction to make
it visible in other connections.  This helps prevent partial
transactions from being visible when they're in inconsistent states.

-tkc





More information about the Python-list mailing list