Gets all the columns in the current row.
Visual Basic Public Overrides Function GetValues( _ ByVal values As Object() _ ) As Integer
C# public override int GetValues( object[] values );
values An array of objects that holds an entire row of the result set.
The number of objects in the array.
For most applications, the GetValues method provides an efficient means for retrieving all columns, rather than retrieving each column individually.
You can pass an Object array that contains fewer than the number of columns contained in the resulting row. Only the amount of data the Object array holds is copied to the array. You can also pass an Object array whose length is more than the number of columns contained in the resulting row.
This method returns DBNull for NULL database columns.
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |