There are no reviews yet. Be the first to send feedback to the community and the maintainers!
Repository Details
Working with Databases in Java using JDBC, Datasource, Connection Pool, Flyway and JDBC Template
Working with Databases in Java
JDBC
Datasource
Connection Pool
Flyway and JDBC Template
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
CREATETABLEactor
(
id bigserialprimary key,
name TEXTNOT NULL,
movie bigintREFERENCES movie (id),
unique (name, movie)
);