I'm using the following client SQL Manager Lite to query a mysql db.
I am running queries on a database that I am just familiarising myself with so I am trying to see the effect of running various queries PRIOR to running them with a commit.
begin transaction
update tblFoo set x = 1 where y = 2
rollback transaction
This is plucked straight from my MSSQL 2K experience, is there an MySQL equivalent as this gives me an error
I am running queries on a database that I am just familiarising myself with so I am trying to see the effect of running various queries PRIOR to running them with a commit.
begin transaction
update tblFoo set x = 1 where y = 2
rollback transaction
This is plucked straight from my MSSQL 2K experience, is there an MySQL equivalent as this gives me an error