sql >> Database teknologi >  >> RDS >> Mysql

MySQL Connection vil ikke lukke

Har du prøvet:

      using (MySqlConnection con = new MySqlConnection(ConfigurationManager.ConnectionStrings["mysqlCon"].ConnectionString))
      {
           con.open();
           MySqlDataAdapter DataDTTables = new MySqlDataAdapter(MySQLCommandFunc)
           DataDTTables.SelectCommand.CommandTimeout = 240000;
           MySQLCommandFunc.Connection = con;
           DataDTTables.Fill(DTTableTable);
           con.close();
     }

?



  1. Sådan indstilles standardsproget for alle nye logins i SQL Server (T-SQL)

  2. SQLite - Enhver forskel mellem tabel-begrænsning UNIQUE og kolonne-begrænsning UNIQUE?

  3. SQL - Find hele ord i tekst

  4. Hvordan ROWNUM fungerer i pagineringsforespørgsel?