About Java and Databases
About Java and Databases
About Java and Databases
You'll create a simple database with one table, and learn how to connect to it using Java code.
About Java and Databases
Java uses something called JDBC (Java Database Connectivity) to connect to databases.
There's a JDBC API, which is the programming part, and a JDBC Driver Manager, which your programs use to
connect to the database.
JDBC allows you to connect to a wide-range of databases (Oracle, MySQL, etc), but we're going to use the inbuilt database you get with the Java/NetBeans software.
The database is called Java DB, a version of Apache Derby.
It runs on a virtual server, which you can stop and start from within NetBeans.
To check that have everything you need, have a look at the Services tab in NetBeans.
If you can't see the Services tab, click Window from the NetBeans menu.
From the Window menu, select Services.
You should see something like this:
Expand the Databases item to see a Java DB item, a Drivers section, and a sample jdbc: derby sample item:
The idea is that you start the Java DB virtual server, and then create and manipulate databases on the server.
For the project in this section, we're going to set up a new database.
You'll then learn how to connect to this database using Java code.
The database we'll create will be a simple one-table affair, rather than multiple tables connected together.
You can indeed create multiple tables with Java DB, but we don't want to complicate things unnecessarily.
Starting the Virtual Server
The first thing to do is to start the server. So right click on Java DB. You'll see a menu appear. Select Start
Server:
Have a look at the Output window and you'll see a few messages appear: (If you have a firewall running, you'll
need to let the Java DB server through.)
When you click on Create Database, you'll see a dialogue box appear:
Type a name for your database in the first box. Call it Employees.
Type any User Name and Password:
When a connection is made, you'll see some default folders for Tables, Views, and Procedures (see further down
if your screen is not like this):
To create a new table in your database, right click the Tables folder.
From the menu that appears, select Create Table:
If you don't see just the three folders above, but have something like this instead:
From here, you not only type a name for your table, but you also set up the columns for the table.
In the Table Name at the top, delete the default name of Untitled.
Type a new name for your table.
Call it Workers.
You'll then have a table called Workers, which is in the Employees database.
But you can't click OK just yet as the table has no columns in it.
We want to create columns with the following names:
ID
First_Name
Last_Name
Job_Title
The ID column will hold a unique identifying number.
This will identify a row in the table.
A column with unique data in it is known as a Primary Key.
Because it's the Primary Key, the column has to hold data:
It can't hold a null value. (A null value just means there's no information there.)
Click the button on the right, Add column.
A new dialogue box pops up:
The NAME is the name of the column in the table, like ID, First_Name, etc.
The TYPE is the DATA TYPE, Integer, VARCHAR, etc. Click the dropdown list to see more.
Then check or uncheck the CONSTRAINTS boxes as indicated (Primary, Unique).
Click OK and you should be returned to the Create Table dialogue box:
When you're finished, your Create Table dialogue box should look like this:
The next thing to do is to add some records to the database table. We'll do that next.
A database table is like a spreadsheet, in that it has rows and columns.
Each row in our table has cells (fields) for an ID value, a First Name, a Last Name, and a Job Title.
Shortly, you'll learn how to write code to add new rows of information to the table.
But you can use the NetBeans IDE to add rows as well.
To add a new row to your table, right click on your table name.
When you click on View Data, you'll see a new window appear in the main NetBeans window
You use the bottom half of window to enter new table rows.
The top half is for SQL Commands. (You'll learn more about them soon, when we've finished adding rows.)
To add a new row, click the icon with the green plus symbol, in the bottom half of the window:
When your click the new row icon, a dialogue box appears:
As you can see, there are text boxes for each column in our table.
For the ID column, we'll use sequential numbering, starting with 1.
The second row in the table will then have an ID of 2, the third row 3, etc.
The numbers are not the row numbers: they are just unique values for each ID field.
We could have easily started with a value of 100 as the first ID number.
The second number would then be 101, the third 102, etc.
Enter the following data as the first row of your table:
ID: 1
First Name: Helen
Last Name: James
Job Title: IT Manager
Click OK when you're done and you'll be returned to the NetBeans window.
The first row should then be displayed:
ID: 4
When you've finished adding the new rows, your NetBeans window should look like this one:
The results from the SQL statements are then displayed in the bottom half of the window:
As you can see, two rows are returned from the query.
You can also use the keyword LIKE with the WHERE clause.
This then replaces the equals sign. LIKE is usually used with a wildcard character.
The wildcard character % means "any characters", for example, while an underscore is used for just a single
character.
Instead of the equals sign or the keyword LIKE, you can also use the conditional operators (Greater Than, Less
Than, etc.).
If we had a salary column, we could search for all workers who are getting paid more than 1000 a week:
SELECT * FROM USER1.WORKERS WHERE SALARY > 1000
Exercise
We'll leave SQL Statements there, as we now have enough to start programming.
We'll connect to this database and table again, using Java code this time
In a later section, you'll create a Java form that loads information from a database.
The form will have Next and Previous to scroll through the data. Individual records will then be displayed in text
fields
We'll also add button to Update a record, Delete a record, and create a new record in the database.
To get started, and for simplicity's sake, we'll use a terminal/console window to output the results from a database.
So start a new project for this by clicking File > New Project from the NetBeans menu.
Create aJava Application.
Call the project database_console, and the Main class DBConnect:
When you click Finish, your code should look like this:
Add these three string before the connection object and your code would look like this:
As you can see in the image above, there is a wavy underline for the Connection code.
The reason for this is because we haven't trapped a specific error that will be thrown up when connecting to a
database - the SQLException error.
It's the DriverManager that attempts to connect to the database.
If it fails (incorrect host address, for example) then it will hand you back a SQLException error.
You need to write code to deal with this potential error.
In the code below, we're trapping the error in catch part of the try catch statement:
try {
}
catch ( SQLException err ) {
System.out.println( err.getMessage( ) );
}
In between the round brackets of catch, we've set up a SQLException object called err.
We can then use the getMessage method of this err object.
Add the above try catch block to your own code, and move your four connection lines of code to the try part.
You need to make sure that any firewall you may have is not blocking the connection to the server.
A good firewall will immediately display a message alerting you that something is trying to get through, and asking
if you want to allow or deny it
When you allow the connection, your NetBeans output window should print the following message:
"Apache Derby Network Server - 10.4.1.3 - (648739) started and ready to accept connections on port
1527 at DATE_AND_TIME_HERE"
Once your server is started, run the program again.
There's a very good chance you'll get another error message:
"No suitable driver found for jdbc:derby://localhost:1527/Employees"
The reason for this error is that the DriverManager needs a Driver in order to connect to the database.
Examples of drivers are Client Drivers and Embedded Drivers.
You can import one of these so that the DriverManager can do its job.
Click on the Projects tab to the left of the Services window in NetBeans.
(If you can't see a Projects tab, click Window > Projects from the menu bar at the top of NetBeans.)
Locate your project and expand the entry. Right-click Libraries.
From the menu that appears, select Add Jar/Folder:
Click Open and the file will be added to your project library:
Now that you have a Client driver added to your project, run your program again.
You should now be error free.
(The Output window will just say Run, and Build Successful.)
In the next lesson, we'll continue with this Java database tutorial.
Now that you have connected to the database, the next step is to access the table in your database.
For this, you need to execute a SQL Statement, and then manipulate all the rows and columns that were returned.
To execute a SQL statement on your table, you set up a Statement object.
import java.sql.Statement;
In the try part of the try catch block add the following line (add it just below your Connection line):
Statement stmt = con.createStatement( );
Here, we're creating a Statement object called stmt.
The Statement object needs a Connection object, with the createStatment method.
We also need a SQL Statement for the Statement object to execute.
So add this line to your code:
String SQL = "SELECT * FROM Workers";
The above statement selects all the records from the database table called Workers.
We can pass this SQL query to a method of the Statement object called executeQuery.
The Statement object will then go to work gathering all the records that match our query.
However, the executeQuery method returns all the records in something called a ResultSet.
Before we explain what these are, add the following import line to the top of your code:
import java.sql.ResultSet;
Now add this line just below your SQL String line:
ResultSet rs = stmt.executeQuery( SQL );
So our ResultSet object is called rs.
This will hold all the records from the database table.
Before we go any further, though, here's an explanation of what ResultSets are.
ResultSets in Java
A ResultSet is a way to store and manipulate the records returned from a SQL query.
ResultSets come in three different types.
The type you use depends on what you want to do with the data:
1. Do you just want to move forward through the records, from beginning to end?
2. Do you want to move forward AND backward through the records, as well as detecting any changes
made to the records?
3. Do you want to move forward AND backward through the records, but are not bothered about any
changes made to the records?
4. Do you want to move forward AND backward through the records, but are not bothered about any
changes made to the records?
Type number 1 on the list above is called a TYPE_FORWARD_ONLY ResultSet.
Number 2 on the list is a TYPE_SCROLL_SENSITIVE ResultSet.
The third ResultSet option is called TYPE_SCROLL_INSENSITIVE.
The ResultSet also has methods you can use to identify a particular column (field) in a row.
You can do so either by using the name of the column, or by using its index number.
For our Workers table we set up four columns.
They had the following names: ID, First_Name, Last_Name, and Job_Title.
The index numbers are therefore 1, 2, 3, 4.
We set up the ID column to hold Integer values.
The method you use to get at integer values in a column is getInt:
int id_col = rs.getInt("ID");
Here, we've set up an integer variable called id_col.
We then use the getInt method of our ResultSet object, which is called rs.
In between the round brackets, we have the name of the column.
We could use the Index number instead:
int id_col = rs.getInt(1);
Notice that the Index number doesn't have quote marks, but the name does.
For the other three columns in our database table, we set them up to hold Strings.
We, therefore, need the getString method:
String first_name = rs.getString("First_Name");
Or we could use the Index number:
String first_name = rs.getString(2);
Because the ResultSet Cursor is pointing to just before the first record when the data is loaded, we need to use
the next method to move to the first row.
The following code will get the first record from the table:
rs.next( );
int id_col = rs.getInt("ID");
String first_name = rs.getString("First_Name");
String last_name = rs.getString("Last_Name");
String job = rs.getString("Job_Title");
Notice that rs.next comes first in this code.
This will move the Cursor to the first record in the table.
You can add a print line to your code to display the record in the Output window:
System.out.println( id_col + " " + first_name + " " + last_name + " " + job );
Here's what your code should look like now (we've adapted the print line because it's a bit too long):
If you want to go through all the records in the table, you can use a loop.
Because the next method returns true or false, you can use it as the condition for a while loop:
while ( rs.next( ) ) {
}
In between the round brackets of while we have rs.next.
This will be true as long as the Cursor hasn't gone past the last record in the table.
If it has, rs.next will return a value of false, and the while loop will end.
Using rs.next like this will also move the Cursor along one record at a time. Here's the same code as above, but
using a while loop instead.
Change your code to match:
When you run the above code, the Output window should display the following:
Now that you have an idea of how to connect to a database table and display records we'll move on and write a
more complex program using forms and buttons to scroll through the records.