Re: DBF File

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

Re: DBF File

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

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 (DATABASE, 2); > print DATABASE "$username|$password|$dat

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\n"; flock (DATABASE, 8); close (DATAB

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.Krynicky.cz ===