About | Usage | Testing |
---|---|---|
This program is written in Java, and basically allows the user to create and store a database of tables, written as .db files. |
This section coming soon, as this program was build on OSX and has yet to be tried on other platforms.
This program operates on a basic query language.
Load a table from a .db file.
load <table name>;
Store a table to a .db file.
store <table name>;
Create a new table in the database.
create table <table name> ( <column name>,+ );
Create a new table in the database from loaded tables.
create table <table name> as select <column names> from <table names> where <conditions>;
Select rows from an existing table.
select <column names> from <table names> where <conditions>;
Insert rows into a table.
insert into <table names> values <column values>;
Print a table.
print <table name>;
Thanks for checking out my project, and have an awesome day. You deserve it.
Cheers!
==========
Check out my website if you've got a minute to spare!