示例#1
0
 /// <summary>
 /// Executes the statement.
 /// </summary>
 public void Execute()
 {
     Rows.Enumerator rows = ExecuteInternal().GetEnumerator();
     try
     {
         rows.MoveNext();
     }
     finally
     {
         rows.Dispose();
     }
 }
示例#2
0
 /// <summary>
 /// Resets the underlying statement.
 /// </summary>
 public void Dispose() => _rowEnumerator.Dispose();