Mysql
 sql >> Database >  >> RDS >> Mysql

Connettiti al database MySQL remoto tramite Python

 GRANT ALL
 ON  *.*
 TO [email protected]  -- client ip address
 IDENTIFIED BY 'pwd';

Modifica

Questo è l'SQL che eseguiresti sul database per assicurarti che l'user ha accesso a tutto. pwd è l'user la password di.

Fondamentalmente, questa risposta presuppone che il problema di connessione sia un problema di credenziali.