Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 (日本語) » Ultra Light - .NET プログラミング » Ultra Light .NET 2.0 API リファレンス

 

ULResultSet クラス

UL 拡張:Ultra Light データベースの編集可能な結果セットを表します。

構文
Visual Basic
Public Class ULResultSet
  Inherits ULDataReader
C#
public class ULResultSet: ULDataReader
備考

このクラスにはコンストラクタがありません。結果セットは、ULCommand クラスの ULCommand.ExecuteResultSet() メソッドを使用して作成されます。

' Visual Basic
Dim cmd As ULCommand = new ULCommand( _
    "SELECT emp_id FROM employee", conn _
  )
Dim resultSet As ULResultSet = cmd.ExecuteResultSet()

// C#
ULCommand cmd = new ULCommand(
    "SELECT emp_id FROM employee", conn
  );
ULResultSet resultSet = cmd.ExecuteResultSet();

ULResultSet オブジェクトは、位置付け更新や削除の実行対象となる編集可能な結果を表します。編集可能な結果セットには、ULCommand.ExecuteTable() または ULDataAdapter を使用します。

継承:ULDataReader

実装:System.Data.IDataReader、System.Data.IDataRecord、System.IDisposable

参照

ULResultSet メンバ
AppendBytes メソッド
AppendChars メソッド
Delete メソッド
SetBoolean メソッド
SetByte メソッド
SetBytes メソッド
SetDBNull メソッド
SetDateTime メソッド
SetDecimal メソッド
SetDouble メソッド
SetFloat メソッド
SetGuid メソッド
SetInt16 メソッド
SetInt32 メソッド
SetInt64 メソッド
SetString メソッド
SetTimeSpan メソッド
SetToDefault メソッド
SetUInt16 メソッド
SetUInt32 メソッド
SetUInt64 メソッド
Update メソッド