I have created multiple databases but only the password related to username$default is the one that allows me access. I have changed password multiple times and saved it but the new password is not taking effect. My queries are
- Is there one to one relation between the Database Name and password or The Password is the same for all the databases.
- Password Change is not getting affected even after save
- Can I see the Database credentials anywhere in PythonAnywhere
- My $default password contains '@' but still able to go through without any special escape or encoding. I am using SQL Alchemy create_engine
conn_addr = 'mysql+mysqlconnector://' + user + ':' + passwd + '@' + host + ':' + port + '/' + db engine =create_engine(conn_addr, pool_recycle=280)