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

Java Hibernate Basics Data Persistence & ORMs Using JDBC to Connect to a Database

Ricard Taujenis
Ricard Taujenis
4,383 Points

Connect to a database by loading the driver contained in "org.sqlite.JDBC"

and replacing the null value of c with an established database connection to the SQLite database named "treehouse.db". Assume that all pertinent classes have been imported for you.

I followed the previous video got to some understanding but still got confused later on

Application.java
Class.forName("org.sqlite.JDBC"); {
try(Connection c = "treehouse.db" {
 Statement statement=connection.createStatement ();    
} catch(SQLException ex) {
 statemetn.executeUpdate("DROP TABLE");
}

2 Answers

Ivailo Hristov
Ivailo Hristov
6,297 Points

Hi, watch the video, all stuff you need is there.

Try this

// Load class "org.sqlite.JDBC"

Class.forName("org.sqlite.JDBC");

// Establish connection to database named "treehouse.db"

try(Connection c = DriverManager.getConnection("jdbc:sqlite:treehouse.db")) {

} catch(SQLException ex) {

}