Property | Type | Access | Description |
FieldCount Property | Integer | RO | Return the number of fields in row rowno. |
Self Property | DJRowSet | RO | Return a reference to the row set object. |
Size Property | Integer | RO | Return the number of rows in the row set. |
TypeName Property | String | RW | Get/set the record type name for the row rowno of the row set. |
Value Property | Variant | RW | Get/set the value for the field fldno of the row rowno (default). |
Type | Required | Description |
DJRowSet | Yes | Reference to the DJRowSet object that is the subject of the property or method invocation. |
Integer | Yes | Index for the row in the row set. |
Exception | Description |
ERR_TYPEMISMATCH | Returned if the row index is invalid. |
Type | Required | Description |
DJRowSet | Yes | Reference to the DJRowSet object which is the subject of the property or method invocation. |
Type | Required | Description |
DJRowSet | Yes | Reference to the DJRowSet object that is the subject of the property or method invocation. |
Type | Required | Description |
DJRowSet | Yes | Reference to the DJRowSet object which is the subject of the property or method invocation. |
Integer | Yes | Index for the row in the row set. |
String | Yes | Record type name. |
Exception | Description |
ERR_TYPEMISMATCH | Returned if the row index is invalid. |
Type | Required | Description |
DJRowSet | Yes | Reference to the DJRowSet object that is the subject of the property or method invocation. |
Integer | Yes | Index for the row in the row set. |
Integer | Yes | Index for the field in the selected row. |
Variant | Yes | Value to assign to the field. |
Exception | Description |
ERR_TYPEMISMATCH | Returned if either the row or field index is invalid. |
Method | Description |
Append Method (record) | Append a new row using the contents of a DJRecord object. |
Append Method (Values) | Append a new row using the contents of a DJRecord object. |
Clear Method | Clear all rows from the row set. |
Erase Method | Erase row rowno from the row set. |
Insert Method (rowno, record) | Insert a new row as row rowno using the list of records. rowno can be any integer value from 1 through Size + 1. |
Insert Method (rowno, values) | Insert a new row as row rowno using the list of values. rowno can be any integer value from 1 through Size + 1. |
Type | Required | Description |
DJRowSet | Yes | Reference to the DJRowSet object that is the subject of the property or method invocation. |
DJRecord | Yes | Reference to the DJRecord used to append a new row to the row set. |
Variant | Yes | Comma-delimited list of values used as field values for a new row in the row set. |
Exception | Description |
ERR_TYPEMISMATCH | Returned if any invalid parameters are passed to the method. |
Type | Required | Description |
DJRowSet | Yes | Reference to the DJRowSet object that is the subject of the property or method invocation. |
Type | Required | Description |
DJRowSet | Yes | Reference to the DJRowSet object that is the subject of the property or method invocation. |
Integer | Yes | Row index of the row to be erased. |
Exception | Description |
ERR_TYPEMISMATCH | Returned if an invalid row index is passed to the method. |
Type | Required | Description |
---|---|---|
DJRowSet | Yes | Reference to the DJRowSet object that is the subject of the property or method invocation. |
Integer | Yes | Row index for where the row is to be inserted. |
DJRecord | Yes | Reference to the DJRecord used to insert a new row in the row set. |
Variant | Yes | Comma-delimited list of values used as field values for a new row in the row set. |
Exception | Description |
ERR_TYPEMISMATCH | Returned if any invalid parameters are passed to the method. |
Operator | Type | Description |
New Operator | DJRowSet | Create a new object. |