General Perl DBI News

2008-03-18 Thread Tim Bunce
*** DBI Mailing List Archives MarkMail is a free service for searching mailing list archives. They’ve recently loaded 530,000 emails from 75 perl-related mailing lists into their index. They’ve got a home page for searching these lists at http://perl.markmail.org/ The search interface makes it eas

Klaus Loewenhagen ist außer Haus.

2008-03-18 Thread Klaus . Loewenhagen
Ich werde ab 13.03.2008 nicht im Büro sein. Ich kehre zurück am 28.03.2008. Ich werde Ihre Nachricht nach meiner Rückkehr beantworten.

RE: perl DBI on windows 64

2008-03-18 Thread Ramakrishna Raju
Thank you, Alexander. That's what I was looking for. Ramakrishna Raju ( "Raju" ) [EMAIL PROTECTED] -Original Message- From: Alexander Foken [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 18, 2008 5:23 AM To: Ramakrishna Raju Cc: Martin Evans; dbi-users@perl.org Subject: Re: perl

RE: perl DBI on windows 64

2008-03-18 Thread Ramakrishna Raju
Martin, I thought I saw the examples the other day, but I can't seem to find them now. Could you give me the link to the examples? Thanks, Ramakrishna Raju ( "Raju" ) [EMAIL PROTECTED] -Original Message- From: Martin Evans [mailto:[EMAIL PROTECTED] Sent: Friday, March 14, 2008 4

Re: perl DBI on windows 64

2008-03-18 Thread Alexander Foken
Not quite an example, but test code, included in the DBD::ODBC distribution. See for the current version. The relevant code for the SQL print statement starts near line 436. Alexander On 18.03.2008 11:13, Ramakrishna Raju wro

Library not found errors with DBD-Oracle-1.20

2008-03-18 Thread James H. McCullars
Hi, I have successfully installed the Oracle instant client, DBI-1.602 and DBD-Oracle 1.20 and can connect to a database on a remote host, but only if I set LD_LIBRARY_PATH to the directory where the instant client is installed. This is fine, but I need to do this from a CGI script, and settin

Re: Library not found errors with DBD-Oracle-1.20

2008-03-18 Thread John Scoles
Not 100% sure on you situation but one thing I know is that with the instant cleint some of the .so files have been smooched together into one file called ibclntsh.so.10.1 so what you might try is set a symbolic link to that file like this ln -s libclntsh.so ibclntsh.so.10.1 to get this wh

Trapping error condition from log()

2008-03-18 Thread Ramakrishna Raju
Hi, I am writing a perl script to execute several stored proc on SQL Server 2005 and the stored proc uses the log function. When the argument to the log function is -1, it is outside the domain for the Log function and the SQL Server rightly generates an error message to that effec

RE: Trapping error condition from log()

2008-03-18 Thread Ramakrishna Raju
Hi All, I was able to get around it by defining a sub assigned to $dbh->{HandleError} . That seems to catch the error before it gets lost. Other ideas / comments are welcome. Thanks, Ramakrishna Raju ( "Raju" ) [EMAIL PROTECTED] ___

Re: Library not found errors with DBD-Oracle-1.20

2008-03-18 Thread rahed
[EMAIL PROTECTED] ("James H. McCullars") writes: > Hi, I have successfully installed the Oracle instant client, DBI-1.602 > and DBD-Oracle 1.20 and can connect to a database on a remote host, > but only if I set LD_LIBRARY_PATH to the directory where the instant > client is installed. This is fin

Google SoC: Fame and Fortune ($4500) await you!

2008-03-18 Thread Tim Bunce
The Perl Foundation is participating in Google's 2008 Summer of Code. http://code.google.com/soc/2008/ This means Google will give "successful student contributors a 4500 USD stipend, enabling them to focus on their coding projects for three months." "In order to participate in the program,

Re: Google SoC: Fame and Fortune ($4500) await you!

2008-03-18 Thread mikhail maluyk
I'm currently very interested in DBI related stuff, and have a few of my own ideas, which i'll reveal for your judgement. I'm thinking about creating a merge between DBI and memcached. So cache would be handled automaticly and integration would be seamless. This idea occured to me a few times, sin

perl DBI oracle and error ORA 06502

2008-03-18 Thread Pompiliu
Hi, I am running DBI and Oracle DB; I am executing a package and using $dbh->func('dbms_output_get') as in my $row; while (($row = $dbh->func('dbms_output_get'))) { print "$row\n"; } if ($sth->err) { print STDERR "ERROR: $DBI::err

Re: Google SoC: Fame and Fortune ($4500) await you!

2008-03-18 Thread Greg Sabino Mullane
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 > I'm thinking about creating a merge between DBI and memcached. So cache > would be handled automaticly and integration would be seamless. This idea > occured to me a few times, since i was writing web app's which took > advantege of memcached.