You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FYI setting up the database using the commands in the README threw an error about incorrect syntax near IDENTIFIED BY. As a result pyctd.update() asked for connection string.
SQL statements in the README:
CREATEDATABASEpyctd CHARACTER SET utf8 COLLATE utf8_general_ci;
GRANT ALL PRIVILEGES ON pyctd.* TO 'pyctd_user'@'%' IDENTIFIED BY 'pyctd_passwd';
FLUSH PRIVILEGES;
Some googling indicates creating users via GRANT is deprecated behavior.
After using
CREATEDATABASEpyctd CHARACTER SET utf8 COLLATE utf8_general_ci;
CREATEUSER 'pyctd_user'@'%' IDENTIFIED BY 'pyctd_passwd';
GRANT ALL PRIVILEGES ON pyctd.* TO 'pyctd_user'@'%';
FLUSH PRIVILEGES;
pyctd.update() looks like it's working as expected.
The text was updated successfully, but these errors were encountered:
FYI setting up the database using the commands in the README threw an error about incorrect syntax near
IDENTIFIED BY
. As a resultpyctd.update()
asked for connection string.SQL statements in the README:
Some googling indicates creating users via GRANT is deprecated behavior.
After using
pyctd.update()
looks like it's working as expected.The text was updated successfully, but these errors were encountered: