MySQL
Connect a MySQL Database to Wobby
Connect MySQL to Wobby
1. Create a Read-Only User in MySQL
-- Replace with your secure username and password
CREATE USER 'wobby_user'@'%' IDENTIFIED BY 'your_secure_password';
-- Grant usage access (no database access yet)
GRANT USAGE ON *.* TO 'wobby_user'@'%';2. Grant Read-Only Access to Data
3. Optional Configuration (Recommended)
4. Set Up the Connection in Wobby
That’s It!
Last updated