SQLTable Constructor | |
Construct a SQLTable object.
Namespace:
VO
Assembly:
VOSQLClasses (in VOSQLClasses.dll) Version: 2.19
Syntax CONSTRUCTOR(
symTableName,
aFieldList,
oSQLConnection
) CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public SQLTable(
Usual symTableName = default,
Usual aFieldList = default,
Usual oSQLConnection = default
)
Request Example
View SourceParameters
- symTableName (Optional)
- Type: Usual
The symbol representing the name of the table. - aFieldList (Optional)
- Type: Usual
The array of column names from the table to be included. If not specified, all columns are included. - oSQLConnection (Optional)
- Type: Usual
The SQL connection indicating where the table can be found. If not specified, the current default connection is used, if any; if none is defined, the system asks the end user to log on to a database.
See Also