|
Description
|
Returns/sets the underlying table, SQL statement, or stored procedure.
|
Syntax Visual Basic
|
[form.]IXF.RecordSource[ = Text$]
|
|
Visual C++
|
CString IXF.GetRecordSource(); void IXF.SetRecordSource(LPCTSTR lpszNewValue);
|
|
Delphi
|
property RecordSource: WideString;
|
|
C#
|
string IXF.RecordSource;
|
|
Remarks
|
Settings The settings for the RecordSource property are: | Setting | Description | | A table name | The name of one of the tables defined in the Database. | | An SQL query | A valid SQL string using syntax appropriate for the data source. | | stored procedure | The name of a stored procedure in the database. |
|
|
Data Type
|
String
|