Hi, I want to ask if I can somehow connect to mysql database in serverside, which is separate from sql database of the server? I´m using oxmysql. I tried this code but it doesn’t work.
local MySQL = require("oxmysql")
local db = MySQL.createConnection({
host = "...",
user = "...",
password = "...",
database = "..."
})