Skip to content

Working with Databases in Java using JDBC, Datasource, Connection Pool, Flyway and JDBC Template

Notifications You must be signed in to change notification settings

amigoscode/jdbc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Working with Databases in Java

  • JDBC
  • Datasource
  • Connection Pool
  • Flyway and JDBC Template

Diagram

diagram

How to get started

  • switch to branch git checkout start
  • watch YouTube video

Exercise

  • Add the ability to edit movies
  • Add actor table and associate them with movies You will need to create a new migration called: V1__ActorTable.sql and the following sql to create the actor table
CREATE TABLE actor
(
    id    bigserial primary key,
    name  TEXT NOT NULL,
    movie bigint REFERENCES movie (id),
    unique (name, movie)
);

Join the community

About

Working with Databases in Java using JDBC, Datasource, Connection Pool, Flyway and JDBC Template

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages