|
Reset Password
1. Open PgAdmin 3 from Start -> Programs -> Postgresql
2. Select newgenlib database on the left and click on "SQL Editor". This will open a SQL Window
3. Copy+Paste the below query
update patron set user_password=md5('abc') where patron_id='1';
4. Now press F5 (Or green arrow button) in SQL Window Editor
5. You will get a message. "Query successful and 1 row updated"
6. Now try to login into NGL application uising id is 1 pw is abc
|