SQL
zoo.net
Create a new user.
SQLite
DB2
Access
Postgres
Oracle
SQL Server
MySQL
Mimer
Sybase
MySQL
Give the new user permission to connect and to create their own tables etc.
--The foolowing doesn't work since 5.0 --INSERT INTO mysql.user (user, host, password) --VALUES ('scott', 'localhost', PASSWORD('tiger')); CREATE DATABASE scott; GRANT SELECT, INSERT,UPDATE,DELETE,CREATE,DROP ON scott.* TO scott@localhost IDENTIFIED BY 'tiger'; FLUSH PRIVILEGES;
Specific to MySQL
Related links:
USERS
Create a new user.
Read tables from another schema/database
Change the default schema/database.
Find another process and kill it.
Set a timeout.
Change my own password
Who am I?