0
I’m creating a program that uses a database on file. I was told that the Sqlite is for this, I can create database with it and access by file. In that case, would I use the SQL or JDBC library to connect to this database? SQL already comes in Java or I have to download the library 'complete'?
If I had created an application that has several text fields, one writes and he saves that text. I want to save it in a database instead of multiple txt files. I would use SQL or JDBC (or both)?
Just to point out other options besides Sqlite, there are several embedded banks entirely written in Java and optimized to work with JDBC. Among them: HSQLDB, H2, Apache Derby (which already comes with JDK on the name of Javadb)
– Anthony Accioly