MySQL and DBI remote access

2002-06-07 Thread Shawn
Hello all, Does anyone know if there is a way to remotely call the data_source [DBI-data_source('mysql')] property to pull all available databases/drivers? I can't seem to do it since you are not allowed to specify a host name, user name, or password with it. The docs mention nothing

Re: MySQL and DBI remote access

2002-06-07 Thread Colin Faber
Hi, Right from the connect section in the DBD::mysql manual: $dsn = DBI:mysql:database=$database;host=$hostname;port=$port; $dbh = DBI-connect($dsn, $user, $password); Shawn wrote: Hello all, Does anyone know if there is a way to remotely call the

Re: MySQL and DBI remote access

2002-06-07 Thread Shawn
[EMAIL PROTECTED] To: Shawn [EMAIL PROTECTED] Cc: MySql List [EMAIL PROTECTED] Sent: Friday, June 07, 2002 4:14 AM Subject: Re: MySQL and DBI remote access Hi, Right from the connect section in the DBD::mysql manual: $dsn = DBI:mysql:database=$database;host=$hostname;port=$port

Re: MySQL and DBI remote access

2002-06-07 Thread Paul DuBois
Faber [EMAIL PROTECTED] To: Shawn [EMAIL PROTECTED] Cc: MySql List [EMAIL PROTECTED] Sent: Friday, June 07, 2002 4:14 AM Subject: Re: MySQL and DBI remote access Hi, Right from the connect section in the DBD::mysql manual: $dsn = DBI:mysql:database=$database;host=$hostname