Having looked at various links on how to create a split database and having experimented with them, I am proposing in this post a simpler method and would like your comments, concerns , guidance and questions.
I am using Ubuntu 16.04 LibreOffice 5.1.3
(Unfortunately I cannot upload pictures as I do not have enough points)
These are the steps
- Tools → Options → LibreOffice->Advanced->Class Path->Add Archive …
Eg.
/usr/lib/libreoffice/program/classes/hsqldb.jar
-
Start with Database wizard - “Connect To Existing Database”->“JDBC”
-
“Set up a connection to a JDBC database”
Enter the following:Database URL:
hsqldb:file:////path/to/Project/mydb;default_schema=true;shutdown=true;hsqldb.default_table_type=cached;get_column_name=false
JDBC Class Driver:
org.hsqldb.jdbcDriver
-
“Setup User Authentication” … Username = SA
-
“Decide How To Proceed After Saving The Database”
-
“Save Database” → Choose a location eg ~/Project/
The following hsqldb files will be created in ~/Project
mydb.properties
mydb.script
mydb.log
-
Proceed to create a table eg “Test” Columns ID and add some data
-
The following additional hsqldb file will be created in the ~/Projects directory
mydb.data
I would like to hear from the community … any concerns, comments ?
Have I missed something important?