---
title: MariaDb
description: Learn how to connect MariaDB in Infoveave to query open-source relational data for building dashboards, reports, and data workflows.
---

import { Aside, Steps } from '@astrojs/starlight/components';
import { MediaPlayerComponent } from "../../../../../components/video-player";
import RunScript from "../../../../../components/RunScript.astro";

# MariaDb

<MediaPlayerComponent
  video="mariadb.mp4"
    chapters={
[
  {
    "start": 0,
    "end": 4,
    "text": "Click Connections under Administration",
    "description": "From the Infoveave menu, click on 'Administration', then select 'Connections' from the dropdown menu to manage your data connections."
  },
  {
    "start": 4,
    "end": 8,
    "text": "Add New Connection",
    "description": "On the 'Connections' page, click the 'New Connections' button located at the top right to open the interface for adding a new datasource connection."
  },
  {
    "start": 8,
    "end": 18,
    "text": "Select MariaDB Connection",
    "description": "In the 'New Connection' window, scroll down to the 'Database' section and click on the 'MariaDB' option."
  },
  {
    "start": 18,
    "end": 37,
    "text": "Configure MariaDB Details",
    "description": "In the 'New MariaDB Connection' dialog, enter the connection details. Enter the Name, Server, Username, Password , and the Database."
  },
  {
    "start": 37,
    "end": 40,
    "text": "Validate MariaDB Connection",
    "description": "Click the 'Validate' button to verify that your entered MariaDB connection details are correct and establish a successful connection."
  },
  {
    "start": 40,
    "end": 44,
    "text": "Save MariaDB Connection",
    "description": "After the connection validates successfully, click the 'Save' button to create and add the new MariaDB connection to your list of connections."
  }
]
    }
  poster="/images/introduction-poster.png"
  posterText="Creating MariaDB Connection"
  client:load
/>

MariaDB connection helps you connect to a **MariaDB database** and run queries directly from Infoveave.


## Adding a MariaDB Connection

To create a new MariaDB connection:
<Steps>
1. Go to the **Database** section.
2. Select **MariaDB** from the available connectors.
3. Fill in the required connection details in the **New MariaDB Connection** form.
</Steps>

## Connection Parameters

When setting up a MariaDB connection, you need to provide the following details:

| Field      | Description |
|------------|-------------|
| **Name**   | A unique name to identify your connection. |
| **Port**   | Port number for MariaDB (default is `3306`). |
| **Server** | The MariaDB server endpoint. |
| **Username** | Your MariaDB username. |
| **Password** | The corresponding password for the username. |
| **Database** | The MariaDB database you want to connect to. |
| **Schema** | The schema inside the database to be used (optional). |



## Steps to Validate and Save
<Steps>
1. After filling in the details, click **Validate** to verify the connection.
2. If validation succeeds, click **Save** to store the connection.
3. You can now use MariaDB as a datasource in your Infoveave workspace.
</Steps>


## Example Use Case

With a MariaDB connection configured, you can:

- Run queries on structured data stored in MariaDB.  
- Use MariaDB SQL to manage and analyze transactional or analytical datasets.  
- Integrate MariaDB data into Infoveave Infoboards for dashboards, reports, and insights.  


