Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Databases Modifying Data with SQL Handling Errors When Manipulating Data Introduction to Transactions

Jesse Dispoto
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Jesse Dispoto
Front End Web Development Techdegree Graduate 14,538 Points

Is "committing" a statement different then executing or running a statement?

Just trying to grasp the concept of commits in SQL. Is committing essentially just running or executing a SQL command?

1 Answer

COMMIT is used in conjunction with a BEGIN TRANSACTION. COMMIT writes the changes you made as part of that transaction to the database. If you haven't yet committed the changes you still have the opportunity to ROLLBACK the changes.

Think of it as confirming that you are happy with the commands/statements that you ran/executed as part of your transaction.