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 (DATABASE);

Hope this is of help
jffusion


 
On Fri, 12 Jul 2002 14:26:25 +0800 "Karen Liew Ying Ping"
<[EMAIL PROTECTED]> writes:
> Hi,
> 
> Anyone knows if PERL can talk to a .dbf file that is sitting on the 
> same machine where PERL is installed?
> 
> or remote system?
> 
> Thanks.
> 

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

Reply via email to