OracleResultSet class

Represents a result set from a query

Provides methods for iterating over rows and extracting column values

Constructors

OracleResultSet({required DpiOracle dpiOracle, required Pointer<dpiStmt> statement, required Pointer<dpiContext> context, required MemoryManager memoryManager, required int columnCount})

Properties

columnCount int
no setter
hashCode int
The hash code for this object.
no setterinherited
isDisposed bool
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

close() → void
Close the result set
fetchAll() Future<List<Map<String, dynamic>>>
Fetch all remaining rows
fetchOne() Future<Map<String, dynamic>?>
Fetch a single row
fetchRows() Stream<Map<String, dynamic>>
Fetch rows as a stream
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited