I would like to write a script that would print the contents of a .dbf file to the
comand window so I can see how the information is stored, so I can write a script to
print that information out to a txt file in a certain formated why. I do this because
I do not have Crystal Reports software
Hi,
Thought I'd jump in here, cos it's either write this or do some work - god
forbid.
On Monday 15 July 2002 8:09 am, Karen Liew Ying Ping wrote:
> Hi,
>
> What if my DBF file is on a Windows 2k machine but the script is on another
> machine running Apache. How do I
Hi,
What if my DBF file is on a Windows 2k machine but the script is on another machine
running Apache.
How do I go about it?
Is it still looking through the perldoc?
Thanks
--
Best Regards,
Karen Liew Ying Ping
Web Applications Programmer
Product Delivery
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 (D
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
> 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
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.