/// <summary> /// Creates a connection with a MySql server /// </summary> public Database(MySqlConnectionString connectionString, string username = "", string password = "", SqlOptions options = null) { throw new NotImplementedException(); }
/// <summary> /// Creatse a connection with a sqlite daTabase /// </summary> public Database(string filepath, SqlOptions options = null) { throw new NotImplementedException(); }