Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Build Projects using Java JDBC & SQL with practical examples
Rating: 4.7 out of 5(26 ratings)
6,068 students

Build Projects using Java JDBC & SQL with practical examples

Master Java, SQL, Database and JDBC and learn to develop projects in a step by step hands-on based approach
Created byRanjan Pandey
Last updated 12/2023
English
English [Auto],

What you'll learn

  • You will learn about Database and Database Server
  • You will learn about Core Java with concepts and code examples
  • You will learn about Tables and Relationship between them
  • You will learn about different types of SQL commands & Joins
  • You will learn about Java JDBC and how to use it in real world
  • You will learn how to establish a connection from Java code to the database and perform different operations like Select, Insert, Update, and Delete.
  • You will also get the complete source code.

Course content

5 sections95 lectures11h 9m total length
  • Course Overview1:24

    Learn database fundamentals—tables, rows, columns, constraints, and primary and foreign keys, then use JDBC to perform insert, update, delete, and select in Java with source code.

  • About your Instructor0:18
  • What is Database and Database Server and Tables9:22

    Explore how relational databases store data in tables of rows and columns on a database server, and how SQL manages tables, relationships, and queries.

  • Real world Explanation of Tables Rows Relationship between Tables10:25

    Explore real-world database relations with a food delivery example, linking category, menu, orders, and user tables through primary keys and foreign keys.

  • Different Types of SQL Commands7:31

    Identify the roles of ddl, dml, dcl, and tcl in sql, and see how create, alter, drop, select, insert, update, delete, and rollback affect table structure and data.

  • Data Types in SQL5:24

    Learn how SQL data types constrain column values, covering numeric, string, blob, enum, set, and date/time types in MySQL.

  • Downloading and Installing the Database Server3:13

    Download and install the zap x mpp bundle to get the MySQL database server locally, then start MySQL (and Apache), and connect with MySQL Workbench to run queries.

Requirements

  • No Prerequisites

Description

In this course, you will learn about JAVA, Databases, Tables, Schema, SQL, and JDBC. You will learn to connect and execute database queries from Java Code.

You will learn how to establish a connection from Java code to the database and perform different operations like Select, Insert, Update, and Delete.

You will also get the complete source code.

Databases are essential tools for storing and organizing large amounts of data, and they have become increasingly important as the amount of data that organizations collect continues to grow. A database is a collection of data that is organized in a way that makes it easy to access, manage, and update. Some common types of databases include relational databases, NoSQL databases, and graph databases.

One of the most popular languages for working with databases is SQL, which stands for Structured Query Language. SQL is a programming language that allows users to manipulate and query data stored in a database. It can be used to create tables, insert data into tables, update data in tables, and retrieve data from tables. SQL is a declarative language, which means that users specify what they want to do with the data, and the database management system (DBMS) figures out how to do it.

JDBC, which stands for Java Database Connectivity, is a Java API for connecting to databases and executing SQL statements. JDBC provides a standard interface for Java programs to interact with databases, making it easier for developers to work with different types of databases. With JDBC, developers can create database connections, execute SQL statements, and retrieve results from queries.

Together, SQL and JDBC are powerful tools for working with databases. SQL allows users to manipulate data stored in a database, while JDBC provides a standardized way for Java programs to connect to and interact with databases. This combination of tools has become a cornerstone of modern data-driven applications, enabling organizations to collect, store, and analyze vast amounts of data to gain insights and make better decisions.

Who this course is for:

  • Anyone who wants to learn about Java Programming and SQL and how to use Java JDBC with SQL to create Projects