-
Hi! Saving data??
Hi people.
I'm new to this forum and new to Java. I've programmed in C# for less than 6 months now. But I need to ask this question that will help me with programming in general.
I'm trying to make a small program, but it requires data to be held and saved, data to be stored on tables and the ability to manipulate data etc.
Can I use a database file standalone e.g. Microsoft SQL database file? Or is there any other way? I just want to be able to save data and manipulate it. :confused:
-
There are several ways to save data, from creating your own flat file system (a lot of work to do right), or database access.
You will need to download some jar files in order to access databases, depending on which database you want to access. You can interface with most databases via JDBC - google it to download an appropriate one for you.
Hope this helps,
Berkeleybross.