Gets primary key values of a view row that coincides with a specified index by a parameter.
[Visual Basic]
Public Function GetPrimaryKeyColsValue( _
ByVal rowIndex As Integer _
) As Object()
[C#]
public object[] GetPrimaryKeyColsValue(
int rowIndex
);
Parameters
-
rowIndex
- Row index.
Return Value
Returns primary key values if a row exists; otherwise null.
Example
How to get primary key values of a view row that coincides with a specified index by a parameter.
Dim obj As Object() = dbExData.GetPrimaryKeyColsValue(0)
object[] obj = dbExData.GetPrimaryKeyColsValue(0);
See Also
AwDbExData Class | Asterworld.Data Namespace