コード例 #1
0
 /// <summary>
 /// Advance the reader to the next result set.
 /// </summary>
 public bool NextResult()
 {
     // the first result doesn't need to advance the reader
     if (firstResult)
     {
         firstResult = false;
         return(true);
     }
     else
     {
         return(queryReader.MoveToNextResultSet());
     }
 }