sql >> データベース >  >> RDS >> Mysql

mysqlから特定のデータを読み取る方法はC#になります

    cmd.ExecuteNonQuery()を使用する代わりに、レコードを反復処理するためにDataReaderが必要です。 cmd.ExecuteReader();を使用します。

    try 
      { 
        MySqlDataReader myReader = cmd.ExecuteReader(); 
    
        // Always call Read before accessing data. 
        while (myReader.Read())  
        { 
          //This will get the value of the column "name"
          Console.WriteLine(myReader.GetString(myReader.GetOrdinal("name"))); 
        } 
    
        // always call Close when done reading. 
        myReader.Close(); 
    
        // Close the connection when done with it. 
        } 
      finally 
      { 
        con.Close(); 
      } 
    


    1. Access2019でオンスクリーンツールを使用する方法

    2. JDBC を使用して Oracle 11g からコメントを取得する方法は?

    3. PostgreSQL:役割はログインを許可されていません

    4. ある範囲の日付の間の日付の取得