Re: [DBI-Users] UTF-8 issues connecting to Oracle

2008-01-28 Thread Hermann Schwaerzler
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 hello Michael Muratet wrote: [...] > I set the LANG='utf8' again and now I'm seeing: > > perl: warning: Setting locale failed. > perl: warning: Please check that your locale settings: > LANGUAGE = "utf8", > LC_ALL = "utf8", > LANG = "utf8

Re: UTF-8 issues connecting to Oracle

2008-01-28 Thread Alexander Foken
I vagely remember that Perl 5.8.0 had some issues regarding UTF-8. Consider updating to 5.8.1 or newer. Alexander On 29.01.2008 00:02, Michael Muratet wrote: Greetings I am using perl 5.8.0 on RedHat ES 3. I got DBD::Oracle-1.19 to build and pass the tests after we worked out the kinks from

UTF-8 issues connecting to Oracle

2008-01-28 Thread Michael Muratet
Greetings I am using perl 5.8.0 on RedHat ES 3. I got DBD::Oracle-1.19 to build and pass the tests after we worked out the kinks from a recent move to a new network. I am and have been in the process of trying to get some legacy software to run. When I first tried to run the script it bar

Re: Silly Question

2008-01-28 Thread Vinnie Lima
Can someone please remove me from this mailing list. For some reason it is not accepting "unsubscribe" command. Thanks in advance for any help. Vinnie John Scoles <[EMAIL PROTECTED]> 01/28/2008 02:55 PM Please respond to [EMAIL PROTECTED] To Patrick Galbraith <[EMAIL PROTECTED]> cc dbi-use

Re: Silly Question

2008-01-28 Thread John Scoles
Ok Thanks for that, Cheers John Scoels Patrick Galbraith wrote: John Scoles wrote: Who is the current maintainer of DBD::MySQL?? John, I am. regards, Patrick

Re: Silly Question

2008-01-28 Thread Patrick Galbraith
John Scoles wrote: Who is the current maintainer of DBD::MySQL?? John, I am. regards, Patrick -- Patrick Galbraith, Senior Programmer Grazr - Easy feed grazing and sharing http://www.grazr.com Satyam Eva Jayate - Truth Alone Triumphs Mundaka Upanishad

Re: Silly Question

2008-01-28 Thread Martin Evans
John Scoles wrote: Who is the current maintainer of DBD::MySQL?? Patrick Galbraith I think. Martin -- Martin J. Evans Easysoft Limited http://www.easysoft.com

Silly Question

2008-01-28 Thread John Scoles
Who is the current maintainer of DBD::MySQL??

Re: Oracle procedure raises exception but looks to be successful from DBI

2008-01-28 Thread Charles Jardine
On 25/01/08 15:25, Martin Evans wrote: Hi, I've just spent a long time tracking down a bug in an Oracle procedure because DBI's execute method returned success even though the procedure raised an exception. Shouldn't exceptions raised in procedures cause execute to fail? [ snip ] my $s =

Re: Oracle procedure raises exception but looks to be successful from DBI

2008-01-28 Thread Martin Evans
Jeffrey Seger wrote: begin proctest(?); end; is the more desirable syntax for calling oracle procedures. It's an anonymous pl/sql block. I personally had never seen the "call proctest()" syntax used in Oracle. It's valid syntax, but it doesn't appear to be doing what you want it to do. Accord