Hello All:

I have a perl program that process a form survey and store the data
posted into an Access table. Now the table is on my local PC and I want
the program to run on a Unix server on a different machine. I am using
the DBD::ODBC to connect to the database.
Question: Do you think if this will actually work having the db on a
local PC and the program on a Unix server?

Here is part of the code:

use DBD::ODBC;

my $DSN = "dbi:ODBC:survey";
my $dbh = DBI->connect($DSN, "", "", {RaiseError => 1});
....

I tried it at home with Apache server and the database on the same
machine and it worked fine. I do not know much about UNIX.

Thanks.
-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to