[**@lancedb/lancedb**](../README.md) • **Docs** *** [@lancedb/lancedb](../globals.md) / Connection # Class: `abstract` Connection A LanceDB Connection that allows you to open tables and create new ones. Connection could be local against filesystem or remote against a server. A Connection is intended to be a long lived object and may hold open resources such as HTTP connection pools. This is generally fine and a single connection should be shared if it is going to be used many times. However, if you are finished with a connection, you may call close to eagerly free these resources. Any call to a Connection method after it has been closed will result in an error. Closing a connection is optional. Connections will automatically be closed when they are garbage collected. Any created tables are independent and will continue to work even if the underlying connection has been closed. ## Methods ### close() ```ts abstract close(): void ``` Close the connection, releasing any underlying resources. It is safe to call this method multiple times. Any attempt to use the connection after it is closed will result in an error. #### Returns `void` *** ### createEmptyTable() ```ts abstract createEmptyTable( name, schema, options?): Promise ``` Creates a new empty Table #### Parameters * **name**: `string` The name of the table. * **schema**: [`SchemaLike`](../type-aliases/SchemaLike.md) The schema of the table * **options?**: `Partial`<[`CreateTableOptions`](../interfaces/CreateTableOptions.md)> #### Returns `Promise`<[`Table`](Table.md)> *** ### createTable() #### createTable(options) ```ts abstract createTable(options): Promise
``` Creates a new Table and initialize it with new data. ##### Parameters * **options**: `object` & `Partial`<[`CreateTableOptions`](../interfaces/CreateTableOptions.md)> The options object. ##### Returns `Promise`<[`Table`](Table.md)> #### createTable(name, data, options) ```ts abstract createTable( name, data, options?): Promise
``` Creates a new Table and initialize it with new data. ##### Parameters * **name**: `string` The name of the table. * **data**: [`TableLike`](../type-aliases/TableLike.md) \| `Record`<`string`, `unknown`>[] Non-empty Array of Records to be inserted into the table * **options?**: `Partial`<[`CreateTableOptions`](../interfaces/CreateTableOptions.md)> ##### Returns `Promise`<[`Table`](Table.md)> *** ### display() ```ts abstract display(): string ``` Return a brief description of the connection #### Returns `string` *** ### dropAllTables() ```ts abstract dropAllTables(): Promise ``` Drop all tables in the database. #### Returns `Promise`<`void`> *** ### dropTable() ```ts abstract dropTable(name): Promise ``` Drop an existing table. #### Parameters * **name**: `string` The name of the table to drop. #### Returns `Promise`<`void`> *** ### isOpen() ```ts abstract isOpen(): boolean ``` Return true if the connection has not been closed #### Returns `boolean` *** ### openTable() ```ts abstract openTable(name, options?): Promise
``` Open a table in the database. #### Parameters * **name**: `string` The name of the table * **options?**: `Partial`<[`OpenTableOptions`](../interfaces/OpenTableOptions.md)> #### Returns `Promise`<[`Table`](Table.md)> *** ### tableNames() ```ts abstract tableNames(options?): Promise ``` List all the table names in this database. Tables will be returned in lexicographical order. #### Parameters * **options?**: `Partial`<[`TableNamesOptions`](../interfaces/TableNamesOptions.md)> options to control the paging / start point #### Returns `Promise`<`string`[]>