Draft
This page is not complete.
The mozIStorageRow
interface represents a row in the result set from a storage database query.
Inherits from: mozIStorageValueArray
nsIVariant getResultByIndex(in unsigned long aIndex); |
nsIVariant getResultByName(in AUTF8String aName); |
Returns the value from a specific column in the row, using a zero-based index to identify the column.
nsIVariant getResultByIndex( in unsigned long aIndex );
An nsIVariant
object containing the value of the specified column.
Returns the value from a specific column in the row, identifying the column by name.
nsIVariant getResultByName( in AUTF8String aName );
An nsIVariant
object containing the value of the specified column.