Interface: ExecResult<T>
ExecResult represents the return result for executed Database statements via exec()
.
Type parameters
Name | Type |
---|---|
T | unknown |
Hierarchy
Pick
<Metadata
,"duration"
|"txn"
>↳
ExecResult
Properties
count
• count: number
The count of executed statements.
Defined in
@tableland/sdk/src/registry/utils.ts:184
duration
• duration: number
Total client-side duration of the async call.
Inherited from
Pick.duration
Defined in
@tableland/sdk/src/registry/utils.ts:141
results
• Optional
results: T
[]
The optional list of query results.
Defined in
@tableland/sdk/src/registry/utils.ts:188
txn
• Optional
txn: WaitableTransactionReceipt
The optional transaction information receipt.
Inherited from
Pick.txn
Defined in
@tableland/sdk/src/registry/utils.ts:145