Tag

Tag: Java

You are browsing all the posts tagged with Java.

Using the ArrayList object in JAVA

I continue sharing with you bits of code from my JAVA project picking up the thread left in Running SQL queries in JAVA. I remind you that I must develop a library application for school project.
So far I showed you how I connected to a database and how I manipulate data from that database. In [...]

Running SQL queries in JAVA

In a previous post, Connecting to Access database in JAVA, I’ve shared a little snippet of code with you that showed how to connect to an Access DBMS.
With the connection alone you can’t do much to the database excepting the connection. We need to manipulate the data found in the database we connected to.
The manipulation [...]

Connecting to Access database in JAVA

Hi there,
I started a project for school that I must develop in JAVA. It’s a library system that uses Access databases for data and settings storage. I’m not going into any more details about the analysis of the problem but it’s obvious that I needed to setup a connection to the database.
In this small post [...]