
davorg
Thaumaturge
/ Moderator
Feb 25, 2004, 11:20 PM
Post #8 of 9
(616 views)
|
|
Re: [sanyukta] working on 2 servers
[In reply to]
|
Can't Post
|
|
MySQL does support remote connections. From Perl you would just do:
use DBI; my $dbh = DBI->connect('dbi:mysql:host=your_host', 'user', 'pass') or die; And there's a bit of configuration that you'll need to do one the MySQL server. -- Dave Cross, Perl Hacker, Trainer and Writer http://www.dave.org.uk/ Get more help at Perl Monks
|