SQLSelect Constructor | |
Construct a SQL select object.
Namespace:
VO
Assembly:
VOSQLClasses (in VOSQLClasses.dll) Version: 2.19
Syntax CONSTRUCTOR(
cSQLSelect,
oSQLConnection
) CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public SQLSelect(
Usual cSQLSelect = default,
Usual oSQLConnection = default
)
Request Example
View SourceParameters
- cSQLSelect (Optional)
- Type: Usual
A SQL select statement (for example 'SELECT * FROM employee'). - 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.
Return Value
Type:
As with all Init() methods, the instantiation returns the object. An object is created even if the table was not successfully opened, perhaps because the table does not exist, is corrupted or is locked by another user.
See Also