sql >> Database >  >> RDS >> Mysql

ReplicationManager gooide een uitzondering bij het openen van een verbinding

Ik had hetzelfde probleem, maar ik heb het opgelost met dit pakket MySqlConnector

Als je de root-gebruiker gebruikt, probeer dan een andere gebruiker met wachtwoord aan te maken.

En hier is mijn klas die ik gebruikte om verbinding te maken met MySql.

public class SQLDataAccess
{
    string cs = @"Server=172.20.10.5;Database=TestDB;Uid=Creative;Pwd=123456;";
    public SQLDataAccess()
    {
        try
        {
            connection = new MySqlConnection(cs);
            connection.Open();
        }
        catch (MySqlException Ex)
        {
            Console.WriteLine(Ex.Message);
        }
    }

    private string databaseName = string.Empty;

    public string DatabaseName
    {
        get { return databaseName; }
        set { databaseName = value; }
    }

    public string Password { get; set; }

    private MySqlConnection connection = null;

    public MySqlConnection Connection
    {
        get { return connection; }
    }

    private static SQLDataAccess _instance = null;

    public static SQLDataAccess Instance()
    {
        if (_instance == null)
            _instance = new SQLDataAccess();
        return _instance;
    }

    public bool IsConnect()
    {   
        try
        {
            connection = new MySqlConnection(cs);
            connection.Open();
            return true;
        }
        catch (MySqlException Ex)
        {
            Console.WriteLine(Ex.Message);
            return false;
        }
    }

    public void Close()
    {
        connection.Close();
    }
}



  1. Oracle DB Server + APEX + ORDS + JasperReports from scratch (Deel 1)

  2. Hoe maak je een database in SQL?

  3. Tabel wijzigen in SQL Server met behulp van Alter Statement - SQL Server / T-SQL Tutorial Part 35

  4. postgreSQL mysql orakel verschillen