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.DisplayErrors
ホーム • Customization Tools • FCAS • Language Reference • Statement.DisplayErrors
 
Purpose
Assigns or returns whether the default error handling system should be used or disabled in the event that an ODBC error occurs.
Syntax
DBStatement.DisplayErrors [= TRUE | FALSE]


TRUE
ODBC errors will be delivered via modal message box to the offending application.
This is the default.
FALSE
The error message will be suppressed and normal application processing will continue, ignoring the error.
Specific error information may then be returned by the DBError and DBErrorCode attributes, allowing you to build custom database error handlers.

Example
Sub Main ()
        Dim stmt as DBStatement
        stmt.OpenStatement(Parks, dbDynamic, dbRowver)
        stmt.DisplayErrors = FALSE
        stmt.ExecuteSQL("Select * from parkinfo")       
        ...
End sub

 

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