“Batas waktu eksekusi kedaluwarsa. Periode batas waktu berlalu sebelum penyelesaian operasi atau server tidak menanggapi” Kode Jawaban

Batas waktu eksekusi kedaluwarsa batas waktu

using (SqlCommand sqlCmd = new SqlCommand(sqlQueryString, sqlConnection))
   {
      sqlCmd.CommandTimeout = 0; // 0 = give it as much time as it needs to complete
      ...
    }
Coder Kadir

Batas waktu eksekusi kedaluwarsa. Periode batas waktu berlalu sebelum penyelesaian operasi atau server tidak menanggapi

// If your query needs more than the default 30 seconds, 
// you might want to set the CommandTimeout higher. 
// To do that you'll change it after you instantiated the DataAdapter on the SelectCommand 
// property of that instance, like so:

private void FillInDataGrid(string SQLstring)
{
    string cn = ConfigurationManager.ConnectionStrings["Scratchpad"].ConnectionString; //hier wordt de databasestring opgehaald
    DataSet ds = new DataSet();
    // dispose objects that implement IDisposable
    using(SqlConnection myConnection = new SqlConnection(cn))
    {
        SqlDataAdapter dataadapter = new SqlDataAdapter(SQLstring, myConnection);

        // set the CommandTimeout
        dataadapter.SelectCommand.CommandTimeout = 60;  // seconds

        myConnection.Open();
        dataadapter.Fill(ds, "Authors_table"); 
    }
    dataGridView1.DataSource = ds;
    dataGridView1.DataMember = "Authors_table";
}

// The other option: is to address your query. In Sql Server you can analyze 
// the execution plan. I bet there is a full-table scan in it. 
// You might experiment with adding an index on one or two columns in your [old] 
// and [new] table. Keep in mind that adding indexes comes at the cost of higher execution 
// times for inserts and updates and space requirements.
Mappy Show

Jawaban yang mirip dengan “Batas waktu eksekusi kedaluwarsa. Periode batas waktu berlalu sebelum penyelesaian operasi atau server tidak menanggapi”

Pertanyaan yang mirip dengan “Batas waktu eksekusi kedaluwarsa. Periode batas waktu berlalu sebelum penyelesaian operasi atau server tidak menanggapi”

Lebih banyak jawaban terkait untuk “Batas waktu eksekusi kedaluwarsa. Periode batas waktu berlalu sebelum penyelesaian operasi atau server tidak menanggapi” di C#

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya