Offline database [duplicate]

0

I am creating a program that uses a database on file. I was told that SQLite is for this, I can create database with it and access per file. In the case then would I use the SQL or JDBC library to connect to this database? Does SQL already come in Java or do I have to download the 'complete' library?

If I had created an application that has several text fields, the person writes and it writes this text. I want to save it in a database to various txt files. I would use SQL or JDBC (or both)?

    
asked by anonymous 26.08.2014 / 19:29

1 answer

1

You will use JDBC

The following link has all the how to

JDBC - Java + SQLite

    
26.08.2014 / 19:32