Skip to content
This repository has been archived by the owner on Dec 3, 2021. It is now read-only.

SQL-Library/SQL-Library

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

[DEPRECATED] SQL Library (currently under development)

How to use: (add to docs)

Set up username, password and url for db by instantiating a Secrets
object using Secrets.java methods. Use Secrets setters at the beginning of your application
Secrets credentials = new Secrets(username_goes_here, username_goes_here, url_goes_here);
Also be sure to set class with throws IOException for error handling

Create methods:

  • void createNewTable(String tableName, String[] columns, String[] dataTypes, Secrets credentials) throws exception
  • void insertIntoTable(String tableName, String[] columns, String[] dataTypes, String[] values, Secrets credentials) throws exception
  • void createNewColumn(String tableName, String columnName, String dataType, Secrets credentials) throws exception

Relational SQL services support:

- Postgres

- Spring

- MariaDB

- MongoDB

- MySQL

- SQLite

- SQL Server

- Oracle Database

- Tomcat

- Spring Boot Starter

- Hive

Disclaimer of Software Warranty.

THIS LIBRARY PROVIDES THE SOFTWARE TO YOU "AS IS" AND WITHOUT WARRANTY OF ANY KIND, EXPRESS,
STATUTORY, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION ANY WARRANTY OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE OR INFRINGEMENT. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN
TO YOU BY ANY EMPLOYEE, REPRESENTATIVE OR DISTRIBUTOR WILL CREATE A WARRANTY FOR THE SOFTWARE,
AND YOU MAY NOT RELY ON ANY SUCH INFORMATION OR ADVICE.

Licenses

Notes: - continuing development at a later date after full java fundamentals learned