Store
このスクリプト関数は、
Syntax:
Store[ *fieldlist from] table into filename [ format-spec ];
これは明示的に命名された
テキスト値は
Arguments:
引数 | 説明 |
---|---|
*fieldlist::= ( * | field ) { , field } ) |
選択する項目のリスト。項目リストとして * を使用すると、すべての項目が指定されます。 field::= fieldname [asaliasname ] fieldname は、table の項目名と同じテキストです。(項目名にスペースや非標準的な文字などが含まれる場合、ストレート二重引用符または角括弧で囲む必要があります)。 aliasname は、結果の |
table | データ ソースとして使用するロード済みテーブルを表すスクリプト ラベル。 |
filename |
有効なパスを含むターゲット ファイルの名前。
|
|
テキスト ファイルの書式指定はテキスト txt、qvd ファイルの場合はテキスト |
Examples:
Store mytable into xyz.qvd (qvd);
Store * from mytable into xyz.qvd;
Store Name, RegNo from mytable into xyz.qvd;
Store Name as a, RegNo as b from mytable into xyz.qvd;
store mytable into myfile.txt (txt);
store * from mytable into myfile.txt (txt);