Connect a Database¶
RagLeap's AI Manager can connect to your external database and use it to answer customer questions in real time.
Via Manager AI (recommended)¶
Open Manager AI and say:
"Connect my PostgreSQL database"
Manager will ask for credentials one at a time. You do not need to know connection string syntax.
Via the Connectors page¶
- Go to Connectors in the sidebar
- Click Add Data Source
- Select your database type
- Fill in the connection details
- Click Test Connection
- Click Save
Connection details needed¶
| Field | Example |
|---|---|
| Host | db.mycompany.com or localhost |
| Port | 3306 (MySQL) / 5432 (PostgreSQL) |
| Database name | orders_db |
| Username | ragleap_user |
| Password | your_password |
After connecting¶
Once connected, Manager AI will automatically:
- Scan your schema (all tables and columns)
- Suggest automations per channel
- Offer to deploy them with one command
See AI Implementation Studio for the full flow.
Security¶
- Connection strings are encrypted at rest using AES encryption
- Credentials are stored only on your server
- Never sent to Anthropic, OpenAI, or RagLeap's servers
- Only
SELECTqueries are allowed — no write access to your database