Looks like you need to put in a password in your server.cfg in the mysql line
set mysql_connection_string "mysql://user:password@localhost/your_database"
I have this same issue, Just double checked that the string has correct details and its still not connecting
Did you start xampp
I just tried to log into phpMyAdmin, thats where zap has the database, and cant login? its saying âAccess denied for userâ
any1 know how to fix?
Hmm, I dont know Zap that much, but if it was in my setup, it would be xampp related, hope you´ll sort it out.
I Got it sorted. i opened ticket with zap they made a new database for me and moved the files over and that fixed it.
i need help with oxmysql datebase
Please read the documentation. Its fairly clear on installation.
Unable to establish a connection to the database (ECONNREFUSED)!
Error -111: connect ECONNREFUSED 127.0.0.1:3306
See Common issues ¡ Issue #154 ¡ overextended/oxmysql ¡ GitHub for more information.
{
âconnectTimeoutâ: 60000,
âtraceâ: false,
âsupportBigNumbersâ: true,
âjsonStringsâ: true,
âuserâ: ârootâ,
âpasswordâ: â******â,
âhostâ: âlocalhostâ,
âportâ: â3306â,
âdatabaseâ: âfivemâ,
ânamedPlaceholdersâ: false,
âflagsâ: [
âCONNECT_WITH_DBâ
]
}
How do I fix this because it doesnât show on how to do it in the documentation plus there is literally no videos whatsoever to help out on this.
Hi, does anyone know how to make a search query?
Column selection does, now search does not
Iâm doing something like this:
But itâs not working
local result = MySQL.query.await("SELECT * FROM users WHERE ? LIKE ?", {type, "%"..text.."%"})
SELECT * FROM users WHERE ? LIKE ? ["lastname","%Justo%"]
Does anyone have a solution?