Connect MySQL or PostgreSQL databases and query your data using AI-powered chat.
Gather the following information from your database administrator:
For enhanced security, create a dedicated read-only user for dataTamer.
⚠️ Security: Never use admin credentials. Create a read-only user to minimize security risks.
For PostgreSQL:
CREATE USER datatamer_readonly WITH PASSWORD 'your_password'; GRANT CONNECT ON DATABASE your_database TO datatamer_readonly; GRANT SELECT ON ALL TABLES IN SCHEMA public TO datatamer_readonly;
For MySQL:
CREATE USER 'datatamer_readonly'@'%' IDENTIFIED BY 'your_password'; GRANT SELECT ON your_database.* TO 'datatamer_readonly'@'%'; FLUSH PRIVILEGES;
Fill in the database connection form:
💡 Connection String: You can also provide a full connection URL like postgresql://user:password@host:port/database
✓ Success! Connection established. You can now select which tables to index.
Choose which tables and data to make searchable:
Once indexing is complete, ask natural language questions like:
💡 Pro Tip: The AI can automatically join related tables and perform complex aggregations.
Excellent! You've connected a SQL database to dataTamer. Ready to explore more datasources?