Re: remote connection to mysql

2005-02-21 Thread Matt
Mike Silbersack wrote: On Mon, 21 Feb 2005, Matt wrote: Hi, I'm trying to connect remotely to my database server. It is MySQL 4.1.7 which I install from ports. I created a user with permissions to connect from any remote location. I'm using Perl DBI, like this: Are you sure that you set up My

Re: remote connection to mysql

2005-02-21 Thread Mike Silbersack
On Mon, 21 Feb 2005, Matt wrote: Hi, I'm trying to connect remotely to my database server. It is MySQL 4.1.7 which I install from ports. I created a user with permissions to connect from any remote location. I'm using Perl DBI, like this: Are you sure that you set up MySQL to accept TCP connec

Re: remote connection to mysql

2005-02-21 Thread ALeine
[EMAIL PROTECTED] wrote: > use DBI; > > my $dbh = DBI->connect( > 'dbi:mysql:[EMAIL PROTECTED]:3306', >'user', 'passwd', { >RaiseError => 1, AutoCommit => 1 >} > ); > > Yet I continue to receive connection errors. Can't connect to > the MySQL server on 3306 (10061).

remote connection to mysql

2005-02-21 Thread Matt
Hi, I'm trying to connect remotely to my database server. It is MySQL 4.1.7 which I install from ports. I created a user with permissions to connect from any remote location. I'm using Perl DBI, like this: use DBI; my $dbh = DBI->connect( 'dbi:mysql:[EMAIL PROTECTED]:3306', 'user',