SkillAgentSearch skills...

Jdbc

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

Install / Use

/learn @amigoscode/Jdbc
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

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

<p> <a href="https://discord.com/invite/S7gXXxq8" alt="Contributors"> <img src="https://img.shields.io/discord/699965319883784252" /> </a> </p>
View on GitHub
GitHub Stars109
CategoryData
Updated9h ago
Forks129

Languages

Java

Security Score

80/100

Audited on Apr 8, 2026

No findings