Home > Archive > PERL Modules > October 2005 > ANNOUNCE: Teradata::BTET 0.01
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
ANNOUNCE: Teradata::BTET 0.01
|
|
| Geoffrey Rommel 2005-10-19, 6:56 pm |
| Teradata::BTET is a Perl interface to Teradata SQL. It does not attempt
to be a complete interface to Teradata -- for instance, it does not
allow multiple sessions, asynchronous requests, or PM/API
connections -- but it should be sufficient for many applications.
The syntax is similar to that of DBI, but this is not a DBI module.
A SIMPLE EXAMPLE
$dbh = Teradata::BTET::connect("dbc/bogart,bacall");
$sth = $dbh->prepare("select * from edw.sales");
$sth->open;
while ( @row = $sth->fetchrow_list ) {
... process the row ...
}
$sth->close;
$dbh->disconnect;
PREREQUISITES
This module requires:
Perl version 5.6.0 or later
a C compiler
Teradata Preprocessor2 (PP2) for C
At present, the module has been tested only on Solaris, but it should
work on MP-RAS or other platforms with relatively few changes. Those who
are able to test it on MP-RAS, earlier versions of Perl, or other
platforms are invited to collaborate.
| |
| Ron Savage 2005-10-19, 9:55 pm |
| On Wed, 19 Oct 2005 23:10:44 +1000, Geoffrey Rommel wrote:
Hi Geoffrey
It would be nice if, in your docs, you could have See Also or Similar=
Modules,
and refer to DBD::Teradata from http://presicient.com.
|
|
|
|
|