Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

jdbc-intro-v1 #349

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Commits on May 11, 2024

  1. jdbc-intro-v1

    1. Establish connection to my DB
      - using community version of Idea - download plugin DB Browser
        (танці з бубном трохи) - it is work;
      - create new schema - books;
    2. Create init_db.sql file and put the script.
    3. Create Book model
    4. Create DAO layer for Book model.
       - create();
       - findAll();
       - findById();
       - update();
       - deleteById();
    5. Used Dao annotation;
    6. Return Optional findById;
    7. Call CRUD methods in main.
    8. Using custom exception
    MaksimSokur committed May 11, 2024
    Configuration menu
    Copy the full SHA
    30645c3 View commit details
    Browse the repository at this point in the history

Commits on May 12, 2024

  1. jdbc-intro-v2

    corrected
    MaksimSokur committed May 12, 2024
    Configuration menu
    Copy the full SHA
    fe85939 View commit details
    Browse the repository at this point in the history

Commits on May 14, 2024

  1. jdbc-intro-v3

    Create costom exeption DataProcessingException and using it
    Create Conction util and using it
    
    fixed the mistakes
    corrected
    MaksimSokur committed May 14, 2024
    Configuration menu
    Copy the full SHA
    20b1311 View commit details
    Browse the repository at this point in the history