can an INNODB transaction span scripts?
if you, say, open a connection to MySQL, begin a transaction, do some stuff, then ?> end of script, without having committed the transaction, and with AUTOCOMMIT = 0, can you then process this first script in a second script, and at the end commit the transaction? or maybe at the end of a third or fourth script?
Or is this where an Object stored in a session is more relevant???
Will PHP atill autoclose a connection to MySQL when within a transaction?