Re: DBD::Sybase and auto commit

2004-07-15 Thread Michael Peppler
On Thu, 2004-07-15 at 01:26, Matthew O. Persico wrote: On Wed, 14 Jul 2004 08:18:27 +0200, Michael Peppler typed: On Wed, 2004-07-14 at 02:46, Matthew O. Persico wrote: the $sth at prepare time and used as such at execution time, regardless of what the $dbh value is set to? The first

Problem of DBI build

2004-07-15 Thread thep . sykheo
Hi, I installed Oracle Application Server 4.0.8.2 included perl module. I need to installe DBI and DBD::Oracle module. After downloading DBI 1.37, I can the command perl Makefile.PL but not make. perl -V Summary of my perl5 (5.0 patchlevel 5 subversion 3) configuration: Platform:

Problem of DBI build

2004-07-15 Thread thep . sykheo
Hi, I installed Oracle Application Server 4.0.8.2 included perl module. I need to installe DBI and DBD::Oracle module. After downloading DBI 1.37, I can the command perl Makefile.PL but not make. perl -V Summary of my perl5 (5.0 patchlevel 5 subversion 3) configuration: Platform:

Re: no DBD:MSSQL?

2004-07-15 Thread Janet Goldstein
Hardy Merrill wrote: Janet, I've got DBD::ODBC installed on my Windows XP machine. When I do perldoc DBD::ODBC in a command prompt window I can see the excellent documentation that is part of the DBD::ODBC module. Here are some of the section titles in that perldoc: Thank you for your

dbi:Adabas

2004-07-15 Thread Christian Stalp
I still have a problem with my DBD:Adabas-Module Versions: Perl v5.8.3 built for HPUX-10.20 DBI v1.38 DBD:Adabas-0.2003 my script: #!/usr/local/bin/perl -w use DBI; print Test\n; my $user = somebody; my $password = anything; my $data_source = dbi:Adabas:refdb; # TBD $dbh = DBI-connect (

ANNOUNCE: DBD::Oracle 1.16 release candidate for testing

2004-07-15 Thread Tim Bunce
A release candidate of DBD::Oracle 1.16 is available for testing at: http://homepage.eircom.net/~timbunce/DBD-Oracle-1.16-rc5-20040715.tar.gz This release has major changes with much Oracle-version specific code. I'd be especially grateful for reports of testing of ... - a range of Oracle

Re: Problem of DBI build

2004-07-15 Thread Tim Bunce
On Thu, Jul 15, 2004 at 11:55:48AM +0200, [EMAIL PROTECTED] wrote: Hi, I installed Oracle Application Server 4.0.8.2 included perl module. Probably best to ignore that and build your own. I need to installe DBI and DBD::Oracle module. After downloading DBI 1.37, I can the command perl

Re: CYGWIN 1.5.10-3, DBD_oracle-1.15, Oracle 10.1.0

2004-07-15 Thread Tim Bunce
On Thu, Jul 15, 2004 at 01:30:34PM -0700, Bruce Mengler wrote: [EMAIL PROTECTED] /DBD-Oracle-1.15 Please try http://homepage.eircom.net/~timbunce/DBD-Oracle-1.16-rc5-20040715.tar.gz If you still get this: Use of uninitialized value in subroutine entry at /usr/lib/perl5/site_perl/5.8.2

Re: CYGWIN 1.5.10-3, DBD_oracle-1.15, Oracle 10.1.0

2004-07-15 Thread Tim Bunce
On Thu, Jul 15, 2004 at 01:57:10PM -0700, Bruce Mengler wrote: Please ignore my previous message... Please don't ignore my reply :) [EMAIL PROTECTED] /DBD-Oracle-1.15 $ make test /usr/bin/perl.exe -MExtUtils::Command::MM -e test_harness(0, 'blib/lib', 'b lib/arch') t/*.t t/base...ok

CYGWIN 1.5.10-3, DBD_oracle-1.15, Oracle 10.1.0

2004-07-15 Thread Bruce Mengler
Please ignore my previous message... [EMAIL PROTECTED] /DBD-Oracle-1.15 $ make test /usr/bin/perl.exe -MExtUtils::Command::MM -e test_harness(0, 'blib/lib', 'b lib/arch') t/*.t t/base...ok t/cursor.ok t/generalok 2/24Can't get DBI::st=HASH(0x1012e0f4)-{NUM_OFFIELDS_typo}: unr

How to insert CR/LF into Sql Server database?

2004-07-15 Thread Bowen, Mark
I am trying to insert multi-lne data into a text type column in SQL Server. MS says this can be accomplished with the CHAR(13) CHAR(10) functions, however I cannot get these to work in DBI. If I write my text with these functions in them, they either get inserted into the database as text,

making fatal errors warnings

2004-07-15 Thread Edward Peschko
hey all, How do you make errors that are otherwise fatal, warnings? I'm getting an oracle error which I think is a oracle bug (01801), and only effects one row of an otherwise large, large table. I'd like to be able to trap the error, skip the row, and load the rest of the table.. eval doesn't

RE: making fatal errors warnings

2004-07-15 Thread Tim Johnson
Check the DBI docs. There is a way to set the errorlevel or even to set up your own error handler. -Original Message- From: Edward Peschko [mailto:[EMAIL PROTECTED] Sent: Thursday, July 15, 2004 4:50 PM To: [EMAIL PROTECTED] Subject: making fatal errors warnings hey all, How do you

Re: How to insert CR/LF into Sql Server database?

2004-07-15 Thread Bart Lateur
On Thu, 15 Jul 2004 17:53:44 -0400, Bowen, Mark wrote: I am trying to insert multi-lne data into a text type column in SQL Server. MS says this can be accomplished with the CHAR(13) CHAR(10) functions, however I cannot get these to work in DBI. If I write my text with these functions in