> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mindsdb.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Remove a Data Source

## Description

The `delete` function removes a data source from MindsDB. Please note that in order to delete a connected data source, we need to fetch it first with the `getDatabase` function.

## Syntax

Here is how to get an existing database and remove it:

```
try {

  const db = await MindsDB.Databases.getDatabase('mysql_datasource');
  console.log('got a database')
    
  // Deleting a database
  if (db) {
    try {

      await db.delete();
      console.log('deleted a database');
      
    } catch (error) {
      // Couldn't delete a database
      console.log(error);
    }
  } 

} catch (error) {
    // Couldn't connect to database
    console.log(error);
  }
```
