MAN page from RedHat Other mysql-perl-bin-3.21.23-2libc.i386.rpm
lib::DBI::W32ODBC
Section: User Contributed Perl Documentation (3)
Updated: perl 5.004, patch 04
Index NAME
DBI::W32ODBC - An experimental DBI emulation layer for Win32::ODBC
SYNOPSIS
use DBI::W32ODBC;
# apart from the line above everything is just the same as with # the real DBI when using a basic driver with few features.
$dbh = DBI->connect(...);
$rc = $dbh->do($statement);
$sth = $dbh->prepare($statement);
$rc = $sth->execute;
@row_ary = $sth->fetchrow; $row_ref = $sth->fetch;
$rc = $sth->finish;
$rv = $sth->rows;
$rc = $dbh->disconnect;
$sql = $dbh->quote($string);
$rv = $h->err; $str = $h->errstr;
DESCRIPTION
THIS IS A VERY EXPERIMENTAL PURE PERL DBI EMULATION LAYER FOR Win32::ODBC
It was developed for use with an Access database and the quote() methodis very likely to need reworking.
If you can improve this code I'd be interested in hearing out it. Ifyou are having trouble using it please respect the fact that it's veryexperimental.
Index
- NAME
- SYNOPSIS
- DESCRIPTION
This document was created byman2html,using the manual pages.