DtoColumn オブジェクト
このオブジェクトはテーブルの列を表します。
プロパティ
Decimal | 列の小数以下の桁数を取得または設定します。 |
Flags | 列のフラグを取得または設定します。 |
ISR | 列の ISR を取得または設定します。 |
Name | 列の名前を取得または設定します。 |
Number | 列の序数を取得または設定します。 |
Size | 列のサイズを設定または取得します。 |
Type | 列のタイプを取得または設定します。これは列挙型の値です。可能な値のリストについては、 Btrieve 型を参照してください。 |
TypeName | タイプの名前を含む文字列値を返します。 |
メソッド
なし
備考
このオブジェクトを使用すれば、特定のテーブル列のプロパティを表示することができます。
例
Dim dictionary as new DtoDictionary
Dim result as DtoResult
result = dictionary.Open("d:\MyDemodata")
Dim students_table as DtoTable
Set students_table = dictionary.Tables("STUDENTS")
Dim students_cols as DtoColumns
Set students_cols = students_table.Columns
Dim first_col as DtoColumn
Set first_col = students_cols(1)
name = first_col.Name
関連項目