Files
lancedb/docs/src/javascript/enums/WriteMode.md
Lei Xu 9a9fc77a95 doc: improve docs for nodejs connect functions (#833)
* improve the docstring for NodeJS connect functions and
`ConnectOptions` parameters.
* Simplify `npm run build` steps.
2024-01-19 16:07:53 -08:00

914 B

vectordb / Exports / WriteMode

Enumeration: WriteMode

Write mode for writing a table.

Table of contents

Enumeration Members

Enumeration Members

Append

Append = "append"

Append new data to the table.

Defined in

index.ts:1007


Create

Create = "create"

Create a new Table.

Defined in

index.ts:1003


Overwrite

Overwrite = "overwrite"

Overwrite the existing Table if presented.

Defined in

index.ts:1005