mirror of
https://github.com/lancedb/lancedb.git
synced 2026-01-10 05:42:58 +00:00
* improve the docstring for NodeJS connect functions and `ConnectOptions` parameters. * Simplify `npm run build` steps.
50 lines
914 B
Markdown
50 lines
914 B
Markdown
[vectordb](../README.md) / [Exports](../modules.md) / WriteMode
|
|
|
|
# Enumeration: WriteMode
|
|
|
|
Write mode for writing a table.
|
|
|
|
## Table of contents
|
|
|
|
### Enumeration Members
|
|
|
|
- [Append](WriteMode.md#append)
|
|
- [Create](WriteMode.md#create)
|
|
- [Overwrite](WriteMode.md#overwrite)
|
|
|
|
## Enumeration Members
|
|
|
|
### Append
|
|
|
|
• **Append** = ``"append"``
|
|
|
|
Append new data to the table.
|
|
|
|
#### Defined in
|
|
|
|
[index.ts:1007](https://github.com/lancedb/lancedb/blob/c89d5e6/node/src/index.ts#L1007)
|
|
|
|
___
|
|
|
|
### Create
|
|
|
|
• **Create** = ``"create"``
|
|
|
|
Create a new [Table](../interfaces/Table.md).
|
|
|
|
#### Defined in
|
|
|
|
[index.ts:1003](https://github.com/lancedb/lancedb/blob/c89d5e6/node/src/index.ts#L1003)
|
|
|
|
___
|
|
|
|
### Overwrite
|
|
|
|
• **Overwrite** = ``"overwrite"``
|
|
|
|
Overwrite the existing [Table](../interfaces/Table.md) if presented.
|
|
|
|
#### Defined in
|
|
|
|
[index.ts:1005](https://github.com/lancedb/lancedb/blob/c89d5e6/node/src/index.ts#L1005)
|