C# Corner
Tech
News
Videos
Forums
Trainings
Books
Events
More
Interviews
Jobs
Live
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
.NET
ADO.NET
Android
ASP.NET
C#
Databases & DBA
Design Patterns & Practices
Java
Learn iOS Programming
OOP/OOD
SharePoint
Software Testing
Web Development
WPF
View All
2
Reply
What does COMMIT do ?
Pradeep
16y
5.9k
0
Reply
Delete Row
Delete Column
Insert Link
×
Insert
Cancel
Embed YouTube Video
×
Width (%)
Height (%)
Insert
Cancel
Table Options
×
Rows
Columns
First row as header
Create Table
Insert Image
×
Selected file:
Alignment
Left
Center
Right
Select an image from your device to upload
Upload to Server
Cancel
Submit
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
Asad Butt
16y
0
COMMIT makes permanent the changes resulting from all SQL statements in the transaction. The changes made by the SQL statements of a transaction become visible to other user sessions transactions that start only after transaction is committed.
Sapna Malik
16y
0
What is the difference between B TREE INDEX and BITMAP INDEX?
What is the difference between materialized view and snapshot?
Message