mirror of
https://github.com/lancedb/lancedb.git
synced 2026-01-14 07:42:58 +00:00
* Sets `"useCodeBlocks": true` * Adds a post-processing script `nodejs/typedoc_post_process.js` that puts the parameter description on the same line as the parameter name, like it is in our Python docs. This makes the text hierarchy clearer in those sections and also makes the sections shorter.
22 lines
390 B
Markdown
22 lines
390 B
Markdown
[**@lancedb/lancedb**](../README.md) • **Docs**
|
|
|
|
***
|
|
|
|
[@lancedb/lancedb](../globals.md) / AddDataOptions
|
|
|
|
# Interface: AddDataOptions
|
|
|
|
Options for adding data to a table.
|
|
|
|
## Properties
|
|
|
|
### mode
|
|
|
|
```ts
|
|
mode: "append" | "overwrite";
|
|
```
|
|
|
|
If "append" (the default) then the new data will be added to the table
|
|
|
|
If "overwrite" then the new data will replace the existing data in the table.
|