[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:552](https://github.com/lancedb/lancedb/blob/b1eeb90/node/src/index.ts#L552) ___ ### Create • **Create** = ``"create"`` Create a new [Table](../interfaces/Table.md). #### Defined in [index.ts:548](https://github.com/lancedb/lancedb/blob/b1eeb90/node/src/index.ts#L548) ___ ### Overwrite • **Overwrite** = ``"overwrite"`` Overwrite the existing [Table](../interfaces/Table.md) if presented. #### Defined in [index.ts:550](https://github.com/lancedb/lancedb/blob/b1eeb90/node/src/index.ts#L550)