mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-26 22:59:57 +00:00
We aren't yet ready to switch over the examples since almost all JS examples rely on embeddings and we haven't yet ported those over. However, this makes it possible for those that are interested to start using `@lancedb/lancedb`
984 B
984 B
@lancedb/lancedb / Exports / CreateTableOptions
Interface: CreateTableOptions
Table of contents
Properties
Properties
existOk
• existOk: boolean
If this is true and the table already exists and the mode is "create" then no error will be raised.
Defined in
mode
• mode: "overwrite" | "create"
The mode to use when creating the table.
If this is set to "create" and the table already exists then either an error will be thrown or, if existOk is true, then nothing will happen. Any provided data will be ignored.
If this is set to "overwrite" then any existing table will be replaced.