Re: Oracle "wrapped" stored procedures.

2002-02-15 Thread Michael A Chase
- Original Message - From: "Robert Kuropkat (MIS Contractor)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 15, 2002 17:03 Subject: Oracle "wrapped" stored procedures. > I have some stored procedures and functions received from a third party that > have been "wrapped

Re: Oracle Stored Procedures and Packages

2002-02-15 Thread Michael A Chase
- Original Message - From: "Adam Gent" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 15, 2002 15:02 Subject: Oracle Stored Procedures and Packages > I am trying to run an oracle stored procedure through the DBI the > procedure is stored in a package. > > In the DBI f

DBI:ODBC fails on test

2002-02-15 Thread John Ericson
When Im doing an 'make test' on DBI:ODBC it fails quite miserably. I have got ODBC working with php so I know that my drivers and such is working. Versions: Perl 5.6.0 MySQL 3.23.46 MyODBC 3.51.01 iODBC 3.0.5 DBI 1.21 DBI:ODBC 0.38 iODBC is extraced to the directory /usr/local/libiodbc-3.0.5. It

DBI problem

2002-02-15 Thread root
ok, now i am getting an error that my locales are incorrectly set, deart gd this is too much

Oracle "wrapped" stored procedures.

2002-02-15 Thread Robert Kuropkat (MIS Contractor)
I have some stored procedures and functions received from a third party that have been "wrapped". Is it possible to use DBD::Oracle to install these? The $rv = $sth->do($statement); call is failing with: Can't mix placeholder styles (:1/:foo) at DBD/Oracle.pm line 293. Where

loading DBI objects

2002-02-15 Thread root
i hsve a box setup on red hat 7.2 with radiator ( a radius server from open.com.au ) a MySQL server, perl-DBI and DBD::mysql, for some reason i can load an authentication module because a loadable object for DBI cannot be found "Could not load authentication module Radius::AuthSQL: Can't locat

Oracle Stored Procedures and Packages

2002-02-15 Thread Adam Gent
Hi, I am trying to run an oracle stored procedure through the DBI the procedure is stored in a package. In the DBI faq it say that this is possible but I can not seem to get it working. This is the code I am using #!/usr/local/bin/perl use DBI; use CGI; print "Content-Type: text/html\n\n";

Again NULL Values typo

2002-02-15 Thread Bryan Tolka
Bryan Tolka wrote: > I made a typo in my code. I am just a network admin. I am working on > my IP address maintenance system thats interacts with dhcp and dns. I > have also used PHP, but i just bgan using perl with mysql. The > problem is updating several field with NULL or no values assigne

Re: DBI install question

2002-02-15 Thread Mark Thornber
Mary, You are picking up the Sun installed perl (5.000503) instead of the (newly) added 5.6.1 package. I think you need to put /usr/local/bin in your path _before_ /usr/bin so that the required perl is run during the build process. _Then_ gcc will be used and everything will be hunky-dory.

Re: Again NULL Values

2002-02-15 Thread Bart Lateur
On Thu, 14 Feb 2002 11:18:50 -0500, Ronald J Kimball wrote: >You are not inserting a NULL value, you are inserting the four-character >string 'NULL'. Try hw = NULL, without the quotes, instead. > >Also try placeholders for the variables. Here's a shortened example: > >my $sth = $dbh->prepare(<<