Re: Patch: HandleError in connect()

2002-11-24 Thread David Wheeler
On Monday, September 9, 2002, at 06:11 PM, Jeff Urlwin wrote: From perldoc DBI: If the subroutine returns a false value then the "RaiseError" and/or "PrintError" attributes are checked and acted upon as normal. I read that as if the subroutine returns non-false values, then Raise

Re: Patch: HandleError in connect()

2002-11-24 Thread Tim Bunce
Thanks. Tim. On Sun, Nov 24, 2002 at 11:40:08AM -0800, David Wheeler wrote: > >On Monday, September 9, 2002, at 06:11 PM, Jeff Urlwin wrote: > > > >>From perldoc DBI: > >> > >> If the subroutine returns a false value then the "RaiseError" > >>and/or > >> "PrintError" attributes are ch

Firebird

2002-11-24 Thread David Wheeler
Anybody familiar with the Firebird database project? http://firebird.sourceforge.net/ I know that it's a fork of the Borland database, but know nothing about its features. Is there a DBI driver, by chance? What features does it, uh, feature? How does it compare to MySQL and PostgreSQL? Regar

Re: Problem with DBD-ORacle8

2002-11-24 Thread Jared Still
Probably because you haven't set the HTTP_PROXY environment variable to your proxy. e.g. set HTTP_PROXY=myproxy.mydomain.com:8080 Jared On Sunday 17 November 2002 19:43, Janet C. wrote: > Hello, > I am trying to install DBD-Oracle8 using ppm. I get an error message as > follows: > > C:\>pp

execution of SQLs in a batch mode

2002-11-24 Thread Liu Haifeng
Hi, Is there anyway to execute a list of SQL statements in a batch mode using dbi? I just don't want to write codes like $dbh->do($sql1); $dbh->do($sql2); $dbh->do($sql3) ... . Can all SQL statesment be combined into a large string, and then be executed using one $dbh->do($sqls) ? Regards H