ALFA.MySQLDatabaseInternal.MySQLDatabaseInternal C# (CSharp) Method

MySQLDatabaseInternal() private method

Create a new MySQLDatabaseInternal object.
private MySQLDatabaseInternal ( string ConnectionString = null, bool Dedicated = false ) : System
ConnectionString string Optionally supplies an overload /// connection string. If null, the default string is built from the /// NWNX MySQL plugin's configuration file.
Dedicated bool Supplies true if the database object is to /// use a dedicated connection.
return System
        internal MySQLDatabaseInternal(string ConnectionString = null, bool Dedicated = false)
        {
            this.Dedicated = Dedicated;

            if (ConnectionString == null)
                SetupConnectionString();
            else
                this.ConnectionString = ConnectionString;
        }