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 trialZubeyr Aciksari
21,074 PointsWe are done with all our database transactions! Once more, assume you have a variable named 'database'. Finish the trans
Hi, just stuck in here, and get a bummer, please help.. Thanks!
"We are done with all our database transactions! Once more, assume you have a variable named 'database'. Finish the transaction. Don't forget to set it as successful!"
/* Add your code here!
* Assume you already have a variable named 'database'.
*/
database.endTransaction();
3 Answers
MUZ141139 Kenny Mpariwa
13,596 Pointsdatabase.setTransactionSuccessful(); database.endTransaction(); database.close();
George Pirchalaishvili
3,747 Pointsyou need to add this line, before ending transaction :)
database.setTransactionSuccessful();
MUZ140537 Kudakwashe Betera
4,875 PointsCan u please healp am failing to close the database
database.setTransactionSuccessful(); database.endTransaction(); close(database);
Majdi Zrelli
Courses Plus Student 19,262 Pointsreplace close(database); by database.close();