Re: Unlimited client connections for MySQL

2006-12-15 Thread Remo Tex
Dwight Tovey wrote: Brent Anderson wrote: Hello. I'm developing a client application for several platforms that will need to connect to a remote MySQL database. Unfortunately, MySQL refuses connections from external IP's that aren't allowed and since the clients using this will be on unknown IP

Re: Unlimited client connections for MySQL

2006-12-13 Thread Dwight Tovey
Brent Anderson wrote: > Hello. > > I'm developing a client application for several platforms that will > need to connect to a remote MySQL database. Unfortunately, MySQL > refuses connections from external IP's that aren't allowed and since > the clients using this will be on unknown IP addresses

Re: Unlimited client connections for MySQL

2006-12-13 Thread Dan Buettner
GRANT (ALL|SELECT|INSERT|UPDATE|DELETE|etc) ON DATABASE.* TO 'user'@'%' IDENTIFIED BY 'password' See http://dev.mysql.com/doc/refman/5.0/en/grant.html for details. Note that localhost is considered as a special case, not included in the wildcard % HTH, Dan On 12/13/06, Brent Anderson <[EMAIL P