DBF File

2002-07-11 Thread Karen Liew Ying Ping
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.

Re: DBF File

2002-07-12 Thread Jenda Krynicky
> 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

Re: DBF File

2002-07-12 Thread jffusion
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

Re: DBF File

2002-07-12 Thread Jenda Krynicky
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

Re: DBF File

2002-07-14 Thread Karen Liew Ying Ping
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

Re: DBF File

2002-07-15 Thread Gary Stainburn
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

Printing contents of .dbf file to comand window

2002-07-26 Thread cory
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