Java EE Tutorial #3 – JPA Database Connection Part 1




Java EE Tutorial #3 – JPA Database Connection Part 1 In this Video I show you how to use Databases in Java EE. We will work with JPA and Glassfish JDBC …

Original source


5 responses to “Java EE Tutorial #3 – JPA Database Connection Part 1”

  1. Great tutorial. I'm pasting here the  sql script to generate the table used in the video, in case anyone needs it:

    create table t_user(
       id INTEGER(10) NOT NULL AUTO_INCREMENT,
       username VARCHAR(45) NOT NULL,
       PRIMARY KEY(id)
    ) ENGINE=INNODB;

Leave a Reply