# Functions
New creates a new Database based on the given type in the settings.
NewMySQL creates a new MySQL database.
NewPostgresql creates a new Postgresql database.
NewSQLite creates a new SQLite database.
# Structs
Column stores information about a column.
GeneralDatabase represents a base "class" database - for all other concrete databases it implements partly the Database interface.
MySQL implemenmts the Database interface with help of generalDatabase.
Postgresql implemenmts the Database interface with help of generalDatabase.
SQLite implemenmts the Database interface with help of generalDatabase.
Table has a name and a set (slice) of columns.
# Interfaces
Database interface for the concrete databases.