Purpose
Returns or assigns column attributes and methods.
Syntax
DBStatement.Column (ColName | ColNum) [.Attribute] [= Value]
ColName |
The cursor's column by name. |
ColNum |
The cursor's column by ordinal number. |
Attribute |
The specific column attribute you want to access. |
Value |
Data that you want to write to the database for this column. |
Examples
Debug stmt.Column ("Subject")
Debug stmt.Column (2)
Debug stmt.Column ("Subject").ColNum
Debug stmt.Column ("Subject") = 42
|