sqlite_rollback

mIRC SQLite

sqlite_rollback
Rolls back a transaction.
Syntax
$sqlite_rollback ( conn )
/sqlite_rollback conn
Parameters
conn
The connection identifier.
Return Value
1 on success, or $null if there was an error.
Remarks
$sqlite_rollback is a shorthand function provided for convience for executing ROLLBACK TRANSACTION on conn.

Rolling back a transaction will discard all the changes that were done during the transaction.

It is usually ok to ignore the return value of $sqlite_rollback because the only case an error is returned is when an invalid conn is specified or it's used out of sequence.