Database
dbperl.asc
Associated article: The DBperl Relational Database API
Tags: Database
Published source code accompanying Perry Scherer's article on DBperl, a Perl 5 package which implements a relational database API for a variety of database engines, including Oracle, Informix, Ingres, Interbase, Postgres, Sybase, and Unify 5.0.
_THE DBPERL RELATIONAL DATABASE API_ by Perry Scherer Listing One #!/usr/local/bin/perl -w use DBI; ### Connect to an Oracle database using the connect method. $dbh = DBI->connect ( 'T:myMachine:TESTDB', 'testID', 'testPASS', 'Oracle' ); die $DBI::errstr unless $...


