Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

सी #, माईएसक्यूएल - कमांड निष्पादन के दौरान घातक त्रुटि का सामना करना पड़ा- अन्य समाधानों की जांच की, कुछ मुझे याद आ रही है

यह लाइन गलत है

using (conn = new MySqlConnection(cs));

अर्धविराम निकालें और एक {} . के अंदर MySqlConnection चर की आवश्यकता वाली सभी चीज़ों को शामिल करें ब्लॉक करें

using (MySqlConnection conn = new MySqlConnection(cs))
{
    // No need to test if the connection is not open....
    conn.Open();
    .........

    // Not needed (at least from your code above
    // MySqlDataAdapter MyAdapter2 = new MySqlDataAdapter();
    // MyAdapter2.SelectCommand = myCommand2;

    ... calcs follow here

    // Attention here, if the query returns null (no input match) this line will throw
    oldpoints = (int)myCommand2.ExecuteScalar();

    .... other calcs here


    MySqlCommand cmdDataBase = new MySqlCommand(query, conn);
    cmdDataBase.Parameters.Add("@input", SqlDbType.Int).Value = Convert.ToInt32(textBox2.Text);
    cmdDataBase.Parameters.AddWithValue("@Points", new_points);
    cmdDataBase.Parameters.AddWithValue("@Rewards", new_rewards);
    cmdDataBase.Parameters.AddWithValue("@Transaction", textBox3.Text);
    cmdDataBase.Parameters.AddWithValue("@TransationDate", transaction_date);

    // Use ExecuteNonQuery for INSERT/UPDATE/DELETE and other DDL calla
    cmdDataBase.ExecuteNonQuery();

    // Not needed
    // MySqlDataReader myReader2;
    // myReader2 = cmdDataBase.ExecuteReader();

    // Not needed, the using block will close and dispose the connection
    if(conn.State == ConnectionState.Open)
        conn.Close();

}

अंतिम क्वेरी में एक और त्रुटि भी है। @TransactionDate पैरामीटर और WHERE क्लॉज के बीच कोई स्पेस नहीं है। ऐसे मामलों में जहां एक लंबे SQL कमांड टेक्स्ट की आवश्यकता होती है, मुझे शब्दशः स्ट्रिंग लाइन कैरेक्टर निरंतरता @ बहुत उपयोगी लगता है

string query = @"UPDATE members Set [email protected], [email protected], 
                        [email protected], [email protected]
                        WHERE id = @input;";



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. MySQL - उन संख्याओं की सूची में से चुनें, जिनका किसी तालिका के आईडी फ़ील्ड में कोई समकक्ष नहीं है

  2. इन 2 तालिकाओं के लिए किस प्रकार के संबंध की आवश्यकता है?

  3. समूह के साथ और कहां से चुनिंदा गिनती (*) को कैसे तेज करें?

  4. वसंत में फ़िल्टर क्लॉज सहित OneToMany के साथ समस्याएं jpa

  5. JSON डेटा को पार्स करना और MySQL में सम्मिलित करना