gt;
> Starhub Internet Pte Ltd
> 31, Kaki Bukit Road 3, #05-18/20
> Techlink Lobby A
> Singapore 417818
> DID: 6 825 7813
> Email: [EMAIL PROTECTED]
> [EMAIL PROTECTED]
>
> - Original Message -----
> From: Jenda Krynicky
> To: [EMAIL PROTECTED]
>
5 PM
Subject: Re: DBF File
> Hi,
>
> Anyone knows if PERL can talk to a .dbf file that is sitting on the
> same machine where PERL is installed?
See
perldoc DBD::XBase
and
perldoc DBD::ODBC
If you do not have these modules, install DBI.
Jenda
===
From: [EMAIL PROTECTED]
> Here are some lines that may help you
> this will open and write to a database file.
>
> my $database = 'c:\apache\your.dbf'; this is where you define the
> .dbf file
>
> open (DATABASE, ">>$database");
> flock (DATABASE, 2);
> print DATABASE "$username|$password|$dat
Hi
Here are some lines that may help you
this will open and write to a database file.
my $database = 'c:\apache\your.dbf'; this is where you define the .dbf
file
open (DATABASE, ">>$database");
flock (DATABASE, 2);
print DATABASE "$username|$password|$date\n";
flock (DATABASE, 8);
close (DATAB
> Hi,
>
> Anyone knows if PERL can talk to a .dbf file that is sitting on the
> same machine where PERL is installed?
See
perldoc DBD::XBase
and
perldoc DBD::ODBC
If you do not have these modules, install DBI.
Jenda
=== [EMAIL PROTECTED] == http://Jenda.Krynicky.cz ===