/* This program is used to start the mysqld server to manage the personal database of a user. Currently, mysql distinguish "localhost" from other target. When we connect to localhost, we use the unix domain socket to reach mysqld instead of an IP socket. We propose to coin the word "personal" to mean "connect to the mysqld started by this user, using a unix domain socket found in this user home directory. The socket is created in $HOME/.mysql/hostname.socket. The databases are created in $HOME/.mysql. Whenever we connect to the personal database and fail, we start the mymysql program so it can start the mysqld server. The goal of this program is to have mysqld started only once. */ int main (int argc, char *argv[]) { }