Tips

メソッドでピクチャフィールド付きレコードを読み出し/書き出しする方法

日付2001/09/07
ID01-720
バージョンv6.5.x and 6.7.x
プラットフォームWindows and Mac

これをする1つの方法は読み出し/書き出しプロジェクトファイルを使用することによります。

この解決は、IMPORT DATAおよびEXPORT DATAコマンドの使用を含んでいます。これをするために、最初にデータベース用の読み出し/書き出しプロジェクトファイルを手動で作成する必要があります。

指示に従ってください:

- Launch the Import or the Export editor.
- Select all fields to be imported or exported.
- Under the Records setting, select Export Selection.
- Under the Format setting, select 4th Dimension.
- Click the Save Settings as a project file button (in this case, the name of the project file is "IEProject"). Make sure that the project file is saved in the same folder as the structure file.
- Click Cancel to close the Import/Export window.

今、読み出しか書き出しを自動的に実行することができる次の2つのメソッドの使用:

`Method: Import
C_BLOB($bProject)
DOCUMENT TO BLOB("IEProject";$bProject) `Load Import/Export Setting
IMPORT DATA("FileName";$bProject)

`Method: Export
C_BLOB($bProject)
DOCUMENT TO BLOB("IEProject";$bProject) `Load Import/Export Setting
EXPORT DATA("FileName";$bProject)