> For the complete documentation index, see [llms.txt](https://docs.servoy.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.servoy.com/reference/servoycore/dev-api/datasources/dbdatasourceserver.md).

# DBDataSourceServer

## Overview

`DBDataSourceServer` provides runtime access to a database server within Servoy applications, accessible via `datasources.db.<server_name>`. This object enables interaction with database servers, including the ability to define client-specific connections, retrieve server names, and access tables within the server. For further details on configuring connections, refer to the [JSConnectionDefinition](https://docs.servoy.com/reference/servoycore/dev-api/datasources/jsconnectiondefinition) documentation.

## Methods Summarized

| Type                                                                                          | Name                                                | Summary                                                                                                                                                                     |
| --------------------------------------------------------------------------------------------- | --------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [JSConnectionDefinition](/reference/servoycore/dev-api/datasources/jsconnectiondefinition.md) | [defineClientConnection()](#defineclientconnection) | Define a client connection for this server, you can configure the Database Server to create connections for current client using properties of this JSConnectionDefinition. |
| [DBDataSourceServer](/reference/servoycore/dev-api/datasources/dbdatasourceserver.md)         | [getDataModelCloneFrom()](#getdatamodelclonefrom)   | Get the server where this server is a data model clone from.                                                                                                                |
| [String](/reference/servoycore/dev-api/js-lib/string.md)                                      | [getServerName()](#getservername)                   | Get the server name.                                                                                                                                                        |
| [Array](/reference/servoycore/dev-api/js-lib/array.md)                                        | [getTableNames()](#gettablenames)                   | Returns an array with the names of all tables of this server.                                                                                                               |

## Methods Detailed

### defineClientConnection()

Define a client connection for this server, you can configure the Database Server to create connections for current client using properties of this JSConnectionDefinition.\
All interaction with the database will go over a connection coming from a specific client pool with that is created for this client.\
Things like username, password or connection properties can be adjusted.

**Returns:** [JSConnectionDefinition](/reference/servoycore/dev-api/datasources/jsconnectiondefinition.md) DBDataSourceServer server

**Sample**

```js
var conncetionDefinition = datasources.db.example_data.defineClientConnection().setProperty('key', 'value').create();
```

### getDataModelCloneFrom()

Get the server where this server is a data model clone from.

**Returns:** [DBDataSourceServer](/reference/servoycore/dev-api/datasources/dbdatasourceserver.md) DBDataSourceServer server

**Sample**

```js
datasources.db.example_data.getDataModelCloneFrom().getServerName()
```

### getServerName()

Get the server name.

**Returns:** [String](/reference/servoycore/dev-api/js-lib/string.md) String server name

**Sample**

```js
datasources.db.example_data.getServerName() // returns 'example_data'
```

### getTableNames()

Returns an array with the names of all tables of this server.

**Returns:** [Array](/reference/servoycore/dev-api/js-lib/array.md) String\[] server table names;

**Sample**

```js
datasources.db.example_data.getTableNames()
```

***


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.servoy.com/reference/servoycore/dev-api/datasources/dbdatasourceserver.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
