Next: , Up: DBI.Row   [Index]


3.6.1 DBI.Row: accessing

asArray

Return the values of the columns.

asDictionary

Return the names and values of the columns as a dictionary.

at: aColumnName

Return the value of the named column (abstract).

atIndex: aColumnIndex

Return the value of the column at the given 1-based index (abstract).

columnAt: aIndex

Return a ColumnInfo object for the aIndex-th column in the row.

columnCount

Return the number of columns in the row.

columnNames

Return an array of column names for the columns in the row.

columns

Return a Dictionary of ColumnInfo objects for the columns in the row, where the keys are the column names.

keysAndValuesDo: aBlock

Pass to aBlock each column name and the corresponding value.

resultSet

Return the result set that includes the receiver.