Commit basically refers to an action which makes all the changes permanant since the last commit.
commit is alos availabale for non-Sql transanctions, like a method available with Installer class which finalises
installation after all installation steps have been carried out successfully
public override void Commit(System.Collections.IDictionary savedState)
{
base.Commit(savedState);
}
so commit simplly is a mechanism to finalise what you have done and make changes permanant
Loading

