{"id":29350634,"url":"https://github.com/cihat-kose/jdbc-mysql-practice-lessons","last_synced_at":"2025-09-04T01:37:54.523Z","repository":{"id":295277294,"uuid":"607689365","full_name":"cihat-kose/jdbc-mysql-practice-lessons","owner":"cihat-kose","description":"Master SQL \u0026 DB testing skills with Java JDBC, TestNG, and real Sakila database scenarios.","archived":false,"fork":false,"pushed_at":"2025-05-24T18:45:40.000Z","size":44,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-08T23:03:48.162Z","etag":null,"topics":["database","java","jdbc","maven","mysql","sakila","sql","testng"],"latest_commit_sha":null,"homepage":"https://dev.mysql.com/doc/sakila/en/","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cihat-kose.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-02-28T13:37:39.000Z","updated_at":"2025-05-24T18:51:08.000Z","dependencies_parsed_at":"2025-05-26T11:30:28.988Z","dependency_job_id":null,"html_url":"https://github.com/cihat-kose/jdbc-mysql-practice-lessons","commit_stats":null,"previous_names":["cihat-kose/jdbc-mysql-practice-lessons","chatgthb/testingproject_01_selenium_junit"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cihat-kose/jdbc-mysql-practice-lessons","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cihat-kose%2Fjdbc-mysql-practice-lessons","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cihat-kose%2Fjdbc-mysql-practice-lessons/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cihat-kose%2Fjdbc-mysql-practice-lessons/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cihat-kose%2Fjdbc-mysql-practice-lessons/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cihat-kose","download_url":"https://codeload.github.com/cihat-kose/jdbc-mysql-practice-lessons/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cihat-kose%2Fjdbc-mysql-practice-lessons/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273539293,"owners_count":25123499,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-03T02:00:09.631Z","response_time":76,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["database","java","jdbc","maven","mysql","sakila","sql","testng"],"created_at":"2025-07-08T23:03:44.917Z","updated_at":"2025-09-04T01:37:54.251Z","avatar_url":"https://github.com/cihat-kose.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# JDBC MySQL Practice Lessons\n\n![Java](https://img.shields.io/badge/Java-ED8B00?style=for-the-badge\u0026logo=java\u0026logoColor=white)\n![JDBC](https://img.shields.io/badge/JDBC-3776AB?style=for-the-badge\u0026logo=java\u0026logoColor=white)\n![MySQL](https://img.shields.io/badge/MySQL-4479A1?style=for-the-badge\u0026logo=mysql\u0026logoColor=white)\n![TestNG](https://img.shields.io/badge/TestNG-FF6C37?style=for-the-badge)\n\nA hands-on learning lab to master **JDBC** and SQL querying skills using the Sakila sample database.\n\n\u003e 📌 SQL scripts are included for reference and **should be executed in tools like DBeaver or MySQL Workbench** — not from IntelliJ.\n\n---\n\n### What You Will Learn\n\n- How to connect to MySQL databases using JDBC\n- Execute SQL queries and navigate results with Java\n- Use scrollable `ResultSet` features\n- Validate data with **TestNG** assertions\n- Structure DB test flows professionally\n\n---\n\n### Tech Stack\n\n- **Java 21**\n- **JDBC** (MySQL Connector)\n- **TestNG 7.10+**\n- **Maven**\n- **MySQL (Sakila)**\n\n---\n\n### Project Structure\n\n```\njdbc-mysql-practice-lessons/\n├── src/\n│   └── test/\n│       └── java/\n│           ├── jdbc/\n│           │   ├── JDBCParent.java\n│           │   ├── JDBCPractices01.java\n│           │   ├── JDBCPractices02.java\n│           │   ├── JDBCSakilaCustomerAddAndVerifyExample.java\n│           │   └── JDBCSakilaTask.java\n│           │\n│           └── mysql-sakila-db-practice-notes/\n│               ├── MySQL_SakilaDB_Mentoring_01.sql\n│               ├── MySQL_SakilaDB_Mentoring_02.sql\n│               └── MySQL_SakilaDB_Mentoring_03.sql\n├── pom.xml\n└── README.md\n```\n\n---\n\n### Getting Started\n\n```bash\n# Clone the repository\ngit clone https://github.com/cihat-kose/jdbc-mysql-sakila-db-practice-notes-practice-lessons.git\ncd jdbc-mysql-sakila-db-practice-notes-practice-lessons\n\n# Build the project\nmvn clean install\n\n# Run all tests\nmvn test\n```\n\n---\n\n### About the SQL Files\n\nThe `.sql` scripts in this repo are for learning purposes only:\n\n- Based on the **Sakila** sample DB\n- Practice topics include:\n    - Filtering, sorting, joins\n    - Aggregation, grouping, DDL \u0026 DML\n    - Query navigation \u0026 performance\n- Execute them in tools like **MySQL Workbench**, **DBeaver**, or **DataGrip**\n\n---\n\n### Who Should Use This?\n\nThis repo is a great fit if you're:\n\n- A QA Engineer learning database testing\n- A SDET student preparing for real-life test scenarios\n- A Java developer exploring JDBC deeper\n- A bootcamp attendee reviewing SQL basics\n\n---\n\n### Maintained by\n\n**[cihatkose](https://github.com/cihat-kose)**  \nCreating dev tools and educational resources for future engineers.\n\n---\n\n### License\n\nThis project is licensed under the [MIT License](LICENSE).\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcihat-kose%2Fjdbc-mysql-practice-lessons","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcihat-kose%2Fjdbc-mysql-practice-lessons","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcihat-kose%2Fjdbc-mysql-practice-lessons/lists"}