NAME
DBD::XBase - DBI driver for XBase
SYNOPSIS
use DBI;
my $dbh = DBI->connect("DBI:XBase:/directory/subdir")
or die $DBI::errstr;
my $sth = $dbh->prepare("select (ID, MSG) from test")
or die $dbh->errstr();
$sth->execute() or die $sth->errstr();
my @data;
while (@data = $sth->fetchrow_array())
{
...
}
DESCRIPTION
DBI compliant driver for module XBase. It is not ready yet, only the
select * from table
works at the moment.
VERSION
0.0343
AUTHOR
(c) Jan Pazdziora, adelton@fi.muni.cz
SEE ALSO
perl(1), DBI(3), XBase(3)