|
-
October 19th, 2003, 04:16 PM
#1
Member
Database users
How do i give a database user a password
-
October 19th, 2003, 04:29 PM
#2
Which database application is it (MySQL, Postresql, Oracle, etc)
-
October 19th, 2003, 04:49 PM
#3
Member
-
October 19th, 2003, 06:56 PM
#4
MySQL has a wonderful online manual that I'd highly recommend to bookmark if you are playing in MySQL. The section on setting up and changing passwords: http://www.mysql.com/doc/en/Passwords.html

Hope that helps.
-
October 20th, 2003, 08:14 AM
#5
You would do it using the GRANT option.
Looks something like...
grant select, delete, update
on database.*
for user with password'password';
Its 4am and that syntax may be off just a bit, but you should get the general idea.
GRANT is what your looking for.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
|