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レコードオブジェクト


レコードオブジェクト(ADOバージョン2.5)

ADO Recordオブジェクトは、レコードセット、ディレクトリ、またはファイルシステムのファイルに行を保持するために使用されます。

2.5より前のバージョンでは、構造化データベースにのみADOからアクセスできました。構造化データベースでは、各テーブルの各行にまったく同じ数の列があり、各列は同じデータ型で構成されています。

Recordオブジェクトを使用すると、列の数やデータ型が行ごとに異なる可能性があるデータセットにアクセスできます。 


構文

objectname.property
objectname.method

プロパティ

Property Description
ActiveConnection Sets or returns which Connection object a Record object belongs to
Mode Sets or returns the permission for modifying data in a Record object
ParentURL Returns the absolute URL of the parent Record
RecordType Returns the type of a Record object
Source Sets or returns the src parameter of the Open method of a Record object
State Returns the status of a Record object

メソッド

Method Description
Cancel Cancels an execution of a CopyRecord, DeleteRecord, MoveRecord, or Open call
Close Closes a Record object
CopyRecord Copies a file or directory to another location
DeleteRecord Deletes a file or directory
GetChildren Returns a Recordset object where each row represents the files in the directory
MoveRecord Moves a file or a directory to another location
Open Opens an existing Record object or creates a new file or directory


コレクション

Collection Description
Properties A collection of provider-specific properties
Fields Contains all the Field objects in the Record object

フィールドコレクションのプロパティ

Property Description
Count Returns the number of items in the fields collection. Starts at zero.

Example:

countfields=rec.Fields.Count

Item(named_item/number) Returns a specified item in the fields collection.

Example:

itemfields=rec.Fields.Item(1)
or
itemfields = rec.Fields.Item("Name")