Traversing To and Fro with SQL Server Based Java Applications using NetBeans IDE
(Page 1 of 5 )
This series introduces you to a step-by-step process for developing Java (or JFC) based applications with Microsoft SQL Server as the database, using NetBeans IDE. In this article (which is the last in this series), I shall introduce you to traversing through a set of rows more efficiently. This will be a bit different from any of the articles in this series.
A downloadable file for this article is available
here.
I already introduced the NetBeans IDE in my previous article "Developing Java Applications using NetBeans." Even though that article is fairly introductory, the next two articles concentrate on the basics of JFC. You can find the next two articles here and here.
If you are new to NetBeans IDE, I strongly suggest you go through the existing articles first, before proceeding with this one. If you are new to developing Microsoft SQL Server based Java applications, I request that you go through another article of mine here.
Creating a Java application using NetBeans IDE
We shall develop a small application with four labels, four text boxes and four buttons. The buttons will be identical to the usage of FIRST, PREVIOUS, NEXT and LAST. The "Northwind" database, by default doesn't have an "emp" table. I just created it for simplicity; you can find its structure along with the rows of that table in my previous article.
Currently, I named the project "SampleJavaApplication1" and the form (or JFrame) "DBSample06" in the package "MyDBPack."
Before dropping all controls onto the form, set the layout to "null layout" (fig 01) to ease our development for this article. When you complete your form design, it should look something like Fig 1 and the "inspector" view should look something like Fig 2.

Fig 1

Fig 2
For the convenience of writing understandable code, I named those controls as follows:
txtEmpno
txtEname
txtSal
txtDeptno
btnFirst, btnPrevious, btnNext, btnLast
lblMsg
jLabel1, jLabel2, jLabel4, jLabel5 (default names)
I also gave a value to the Frame property "title" (using the property window) of "Traversing Java."
You are also required to import necessary packages as shown below:
import java.sql.*;
Next: How to connect to the database during form load >>
More Java Articles
More By Jagadish Chaterjee