ASPチュートリアル

ASPホーム

WPチュートリアル

Webページの紹介 WebPages Razor Webページのレイアウト Webページフォルダ WebPages Global Webページフォーム Webページオブジェクト Webページファイル Webページデータベース Webページヘルパー WebPages WebGrid Webページチャート Webページの電子メール Webページのセキュリティ Webページの公開 Webページの例 Webページクラス

ASP.NET Razor

かみそりのイントロ かみそりの構文 Razor C#変数 Razor C#ループ Razor C#ロジック RazorVB変数 かみそりVBループ RazorVBロジック

ASPクラシック

ASPイントロ ASP構文 ASP変数 ASP手順 ASP条件文 ASPループ ASPフォーム ASPCookie ASPセッション ASPアプリケーション ASP #include ASP Global.asa ASP AJAX ASPメール ASPの例

ASPリファレンス

ASPVB関数 ASPVBキーワード ASP応答 ASPリクエスト ASPアプリケーション ASPセッション ASPサーバー ASPエラー ASPファイルシステム ASP TextStream ASPドライブ ASPファイル ASPフォルダー ASP辞書 ASP AdRotator ASP BrowserCap ASPコンテンツリンク ASPコンテンツローテーター ASPクイック参照

ADOチュートリアル

ADOイントロ ADOコネクト ADOレコードセット ADOディスプレイ ADOクエリ ADOソート ADO追加 ADOアップデート ADO削除 ADO Demo ADOスピードアップ

ADOオブジェクト

ADOコマンド ADO接続 ADOエラー ADOフィールド ADOパラメータ ADOプロパティ ADOレコード ADOレコードセット ADOストリーム ADOデータ型

ADOはメソッドをサポートします


❮完全なレコードセットオブジェクトリファレンス

Supportsメソッドは、Recordsetオブジェクトが特定のタイプの機能をサポートするかどうかを定義するブール値を返します。 

注:このメソッドは、指定された機能がサポートされている場合はtrueを返し、サポートされていない場合はfalseを返します。

構文

objRecordset.Supports(cursoroptions)

Parameter Description
cursoroptions Required. One or more CursorOptionEnum values that specifies what functionality this method should test for

CursorOptionEnum

Constant Value Description
adHoldRecords 0x100 Retrieves more records or changes the next position without committing all pending changes
adMovePrevious 0x200 Supports the MoveFirst and MovePrevious methods, and Move or GetRows methods
adBookmark 0x2000 Supports the Bookmark property
adApproxPosition 0x4000 Supports the AbsolutePosition and AbsolutePage properties
adUpdateBatch 0x10000 Supports UpdateBatch and CancelBatch methods
adResync 0x20000 Supports the Resync method
adNotify 0x40000 Indicates that the data provider supports notifications (which determines whether Recordset events are supported)
adFind 0x80000 Supports the Find method
adIndex 0x100000 Supports the Index property
adSeek 0x200000 Supports the Seek method
adAddNew 0x1000400 Supports the AddNew method
adDelete 0x1000800 Supports the Delete method
adUpdate 0x1008000 Supports the Update method

❮完全なレコードセットオブジェクトリファレンス