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"

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

1 Answer

Jeff Wilton
Jeff Wilton
16,646 Points

I would highly recommend that you go back and watch the previous video and follow along in your own workspaces. Take your time and get your code working in workspaces, and the challenge will be much easier for you.

But just to help get you started, I modified your code to fix the problems:

// 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")) {
      Statement statement = c.createStatement();
} catch(SQLException ex) {
      System.err.printf("Ooops");
}