JDBC Tutorial #6 : Display database query results in a Table

MySQL is a relational database, it stores data in the form of tables. Nearly all database program requires the results to be shown as a table. In this video I have shown how to display results of a database query in a database table. I have also added two textfields for inserting data into the database. This tutorial series 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