https://github.com/biancodavide3/jdbc
Working with Databases in Java using JDBC, Datasource, Connection Pool, Flyway and JDBC Template
https://github.com/biancodavide3/jdbc
jdbc
Last synced: 10 months ago
JSON representation
Working with Databases in Java using JDBC, Datasource, Connection Pool, Flyway and JDBC Template
- Host: GitHub
- URL: https://github.com/biancodavide3/jdbc
- Owner: biancodavide3
- Created: 2025-03-17T09:55:19.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-17T09:55:40.000Z (about 1 year ago)
- Last Synced: 2025-07-05T04:46:16.728Z (12 months ago)
- Topics: jdbc
- Language: Java
- Homepage: https://www.amigoscode.com
- Size: 59.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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
```sql
CREATE TABLE actor
(
id bigserial primary key,
name TEXT NOT NULL,
movie bigint REFERENCES movie (id),
unique (name, movie)
);
```
# Join the community