8 月 23, 2014 | PHP/MySQL 數據庫
有些情況下,客人可能使用遠端 (Remote) MySQL 數據庫。 若客人需要修改 MySQL 用戶密碼,客人可以登入至 (Remote) phpMyAdmin 透過以下 SQL 查閱現時用戶名稱 SELECT CURRENT_USER(); 透過以下 SQL 更改現時用戶密碼 SET PASSWORD = PASSWORD(‘new_password’); — 若是本機 MySQL 數據庫 (localhost), 客人可以直接在 DirectAdmin panel 裡修改 MySQL...
8 月 23, 2014 | PHP/MySQL 數據庫
In a few circumstance, customers may be using a Remote MySQL database (for legacy support or other reason). Customer may login to phpMyAdmin, Issue the following SQL to get the current logged-in username – SELECT CURRENT_USER(); Issue the following SQL to change...