# Functions
Connect connects to database based on submitted database URL.
OpenMySQLDatabase creates and opens connection to a MySQL Database.
OpenPGDatabase creates and opens connection to a PostgreSQL Database.
OpenSQLiteDatabase creates and open connection to new SQLite3 database.
# Constants
ByLastAdded is from newest addition to the oldest.
ByLastModified is from latest modified to the oldest.
DefaultOrder is oldest to newest.
# Structs
GetAccountsOptions is options for fetching accounts from database.
GetBookmarksOptions is options for fetching bookmarks from database.
MySQLDatabase is implementation of Database interface for connecting to MySQL or MariaDB database.
PGDatabase is implementation of Database interface for connecting to PostgreSQL database.
SQLiteDatabase is implementation of Database interface for connecting to SQLite3 database.
# Interfaces
DB is interface for accessing and manipulating data in database.
# Type aliases
OrderMethod is the order method for getting bookmarks.