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

Android Android Data Persistence CRUD Operations with SQLite Closing the Database

Zubeyr Aciksari
Zubeyr Aciksari
21,074 Points

We 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!"

CodeChallenge.java
/* Add your code here! 
 * Assume you already have a variable named 'database'.
 */
database.endTransaction();

3 Answers

database.setTransactionSuccessful(); database.endTransaction(); database.close();

George Pirchalaishvili
George Pirchalaishvili
3,747 Points

you need to add this line, before ending transaction :)

database.setTransactionSuccessful();

Can u please healp am failing to close the database

database.setTransactionSuccessful(); database.endTransaction(); close(database);

replace close(database); by database.close();