> 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 -- http://mail.python.org/mailman/listinfo/python-list