<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Node-DuckDB API](./node-duckdb.md) &gt; [ResultType](./node-duckdb.resulttype.md)

## ResultType enum

Specifier for how DuckDB attempts to load the result

<b>Signature:</b>

```typescript
export declare enum ResultType
```

## Enumeration Members

| Member       | Value                                 | Description                                                                |
| ------------ | ------------------------------------- | -------------------------------------------------------------------------- |
| Materialized | <code>&quot;Materialized&quot;</code> | Load the whole result set into memory                                      |
| Streaming    | <code>&quot;Streaming&quot;</code>    | Keep pointer to the first row, don't load the whole result set all at once |
