| SqlRowItem Property (Int32) |
Get or set the row's column values via the column's index.
Namespace:
Galactic.Sql
Assembly:
Galactic.Sql (in Galactic.Sql.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax public Object this[
int columnIndex
] { get; set; }
Public Default Property Item (
columnIndex As Integer
) As Object
Get
Set
public:
property Object^ default[int columnIndex] {
Object^ get (int columnIndex);
void set (int columnIndex, Object^ value);
}
member Item : Object with get, set
Parameters
- columnIndex
- Type: SystemInt32
The index value of the column
Return Value
Type:
ObjectThe value of the field.
Exceptions Exception | Condition |
---|
IndexOutOfRangeException | The column index number specified was outside the range contained by this row. |
See Also