JDBC Tutorial #1 : Introduction and Installing MySQL

This is a first video in a series of JDBC tutorial videos. This tutorial series will help you to learn and implement database operations in your java program. I am using MySQL for windows as database. Java JDBC is a java API to connect and execute query with the database. JDBC API uses jdbc drivers to connect with the database. In this video, I have explained how to install and configure mysql in windows platform. Download MySQL Setup from Download MySQL Connector from This tutorial covers following topics ■ Connecting Java Program to MySQL Database ■ Inserting data into database ■ Fetching data from database ■ Updating an entry in database ■ Creating a table programmatically ■ Using PreparedStatements ■ Display database contents in JTable
Back to Top