FirstClassトップページ


 ヘルプの目次
このヘルプについて このヘルプについて
 
エンドユーザ向けヘルプ エンドユーザ向けヘルプ
Client Help クライアントヘルプ
Web Help Webアクセスヘルプ
ScreenReader Help スクリーンリーダ
Form フォーム
Synchronization 同期
Definitions 用語
container コンテナ
 
管理者向けヘルプ 管理者向けヘルプ
Administration サーバの管理
Internet Services インターネットサービス
Customization Tools カスタマイズツール(英語)
Administering OTSW OTSWの管理
OTSW Custodian OTSW Custodian
Using FirstClass ED FirstClass ED(英語)
 
バナー:
 
 Statement.MoveFirst
ホーム • Customization Tools • FCAS • Language Reference • Statement.MoveFirst
 
Purpose
Moves the record pointer to the first record in the record set and updates bound columns.
The Move method automatically discards any changes on a modified or inserted record if the changes have not been written to the database with the Update method.
Syntax
DBStatement.MoveFirst
Compliance:
Level 2 (SQLExtendedFetch)
Example
The following example displays all contact names from a database from the first record to the last.
Sub DisplayContactNames(Contact as DBStatement)
        Contact.MoveFirst
        Do While Not Contact.EOF
                Print "Contact name:"; Contact.Column("name")
                Contact.MoveNext
        Loop
End Sub

 

Copyright(C) 2002-2012 FC Management Co. All Rights Reserved<