AW: Need help with an unexpected behaviour

2018-01-28 Thread Andreas Mock
] Gesendet: Sonntag, 28. Januar 2018 14:44 An: Andreas Mock Cc: dbi-users@perl.org Betreff: Re: Need help with an unexpected behaviour On Fri, Jan 26, 2018 at 04:47:35PM +0100, Andreas Mock wrote: > Hi all, > > 9 my %attr = ( > 10 'AutoCommit' => 1, > 11 '

Re: Need help with an unexpected behaviour

2018-01-28 Thread Tim Bunce
On Fri, Jan 26, 2018 at 04:47:35PM +0100, Andreas Mock wrote: > Hi all, > > 9 my %attr = ( > 10 'AutoCommit' => 1, > 11 'RaiseError' => 1, > 35 sub doit { > 36 my $dbh = shift; > 37 > 38 local $dbh->{'AutoCommit'} = 1; > 39 > 40 $dbh->begin_work; > 41 $dbh->do("

Need help with an unexpected behaviour

2018-01-26 Thread Andreas Mock
Hi all, today I stumpled on a behaviour that I didn't expect this way. And currently I haven't found an explanation. That's the reason why I want to ask you whether you can give me the right hints. Environment: SL Linux 6.7 64bit MySQL Community Server 5.5.40 perl 5.10.1 DBI 1.633 DBD::mysql 4.03

Need Help - DBI::Proxy and PlServer Issue

2011-11-22 Thread Vishal K. Gandhi
Hi, We are a well know institute specializing in global learnings located in NJ, USA. I work with Systems and Security department of the institute. We were actually looking for something like DBI ProxyServer and found the same very interesting and powerful as well. We are on our way to set

Need Help - DBI::Proxy and PlServer Issue

2011-11-21 Thread Vishal Gandhi
Hi Friends, We are a well know institute specializing in global learnings located in NJ, USA. I work with Systems and Security department of the institute. We were actually looking for something like DBI ProxyServer and found the same very interesting and powerful as well. We are on our way to s

Re: Need help connecting to Teradata using DBI and DBD::ODBC packages

2011-09-29 Thread Perl developer
Jeff, The script worked. Thank you so much. ($database_connect = DBI->connect('DBI:ODBC:DSNInfo', 'userid', 'password',{PrintError => 0,RaiseError => 1, })) ; On Thu, Sep 29, 2011 at 11:04 AM, Perl developer wrote: > Jeff, > > The following perl script is used to connect to SQL server dat

Need help connecting to Teradata using DBI and DBD::ODBC packages

2011-09-29 Thread Perl developer
Jeff, The following perl script is used to connect to SQL server database using DBI and DBD::ODBC modules. *my *$dbh = DBI->*connect*("DBI:ODBC:Driver={SQL Server};Server=$db_instance;Database=$db_name;UID=$db_user;PWD=$db_pass") or *die*("\n\nCONNECT ERROR:\n\n$DBI::errstr"); I used the same s

Re: Need help with DBI connect

2011-09-13 Thread tiger peng
Mostly there are multiple perl, DBI, ... on your box. Check which perl is used; what is its version; what library paths are under this Perl; where is your DBI, where is the DBD::Oracle under the DBI. And then you need set the environment before call the script; or have the environment set in th

Re: Need help with DBI connect

2011-09-13 Thread Jonathan Leffler
You have module Apache::DBI which ain't DBI. You need to install DBI (and DBD::Oracle), probably after compiling them. JL --Original Message-- From: Chokhani, Khushboo To: dbi-users@perl.org Subject: Need help with DBI connect Sent: Sep 12, 2011 08:18 Hi, I have been stuck

RE: Need help with DBI connect

2011-09-13 Thread John Scoles
ld use the instant client which you can get here http://www.oracle.com/technetwork/database/features/instant-client/index-097480.html CheersJohn > Subject: Need help with DBI connect > Date: Mon, 12 Sep 2011 10:18:05 -0500 > From: khushboo.chokh...@bestbuy.com > To: dbi-

Need help with DBI connect

2011-09-13 Thread Chokhani, Khushboo
Hi, I have been stuck with this error since long now, and have tried almost everything available on web but no luckL Any help would be greatly appreciated. When I try to execute a PERL scripts I am getting an error: ORACLE_HOME=/u01/app/oracle/product/10.2.0 TNS_ADMIN=/usr/local/tns

Re: Need help with DBD::Teradata

2011-08-09 Thread Michael Ludwig
Jeff Tate schrieb am 08.08.2011 um 17:01 (-0400): > I have developed a program suite on Windows that talks to a Teradata > over ODBC and works fine. I need to port it to DBD::Teradata on an AIX > box, as ODBC is not installed. I have built a local perl (5.14) (cc_r > is missing, so I had to compile

Need help with DBD::Teradata

2011-08-08 Thread Jeff Tate
I have developed a program suite on Windows that talks to a Teradata over ODBC and works fine. I need to port it to DBD::Teradata on an AIX box, as ODBC is not installed. I have built a local perl (5.14) (cc_r is missing, so I had to compile a copy with gcc) and I have installed DBI ver 1.6.16 and

RE: Need Help with DBI for oracle

2011-06-03 Thread Harris, Marcus E (Marcus)
o:ganesh.b.ben...@gmail.com] > Sent: Thursday, June 02, 2011 9:48 AM > To: dbi-users@perl.org > Subject: Need Help with DBI for oracle > > Hi, > > I am using the following code for fetching some data. > but not able to connect > > *CODE:* > #!C:/Perl/bin/perl.exe &g

RE: Need Help with DBI for oracle

2011-06-03 Thread John Scoles
Simple connection problem. Try to connect SQLPlus if you can do that then you can use DBD::Oracel Try the same connection string in DBD:Oracle Hope this helps cheers John > CC: dbi-users@perl.org > From: jona...@gmail.com > Subject: Re: Need Help with DBI for oracle > Date

Re: Need Help with DBI for oracle

2011-06-03 Thread Jonas B. Nielsen
As you can read from the error message is not interpolated, exchange the single quotes for double quotes. Sorry for the abrupt response, but I am in transit jonasbn Sent from my iPhone On 02/06/2011, at 15.47, Ganesh Bendre wrote: > Hi, > > I am using the following code for fetching some dat

Need Help with DBI for oracle

2011-06-02 Thread Ganesh Bendre
Hi, I am using the following code for fetching some data. but not able to connect *CODE:* #!C:/Perl/bin/perl.exe use DBI; use DBD::Oracle; print "Content-type: text/html \n\n"; $platform = "ORACLE"; $database = "I8Q.GRP.COM"; $tablename = "COUNTY_ADD"; $user = "dba"; $pw = "dbapass"; $dsn = '

RE: Need HELP: trying to install DBI-1.613 or even DBI-1.616 same errors ...see message??

2011-02-12 Thread Arifuddin, Arif
xs:7: /usr/include/signal.h:111: error: parse error before "siginfo_t" /usr/include/signal.h:113: error: parse error before "siginfo_t" gmake: *** [Perl.o] Error 1 regards, arif.arifud...@xerox.com Xerox Global Services: Dallas Innovation Center Office 972-455-6612 Cell972-261-

Re: Need HELP: trying to install DBI-1.613 or even DBI-1.616 same errors ...see message??

2011-02-12 Thread Martin J. Evans
On 12/02/2011 01:45, Arifuddin, Arif wrote: HELP: $ uname -a SunOS recondfw 5.10 Generic_139556-08 i86pc i386 i86pc isainfo -v 64-bit amd64 applications ssse3 cx16 mon sse3 sse2 sse fxsr mmx cmov amd_sysc cx8 tsc fpu 32-bit i386 applications ssse3 cx16 mon sse3 sse2 sse fxsr

Re: Need HELP: trying to install DBI-1.613 or even DBI-1.616 same errors ...see message??

2011-02-12 Thread Alexander Foken
On 12.02.2011 02:45, Arifuddin, Arif wrote: HELP: $ uname -a SunOS recondfw 5.10 Generic_139556-08 i86pc i386 i86pc isainfo -v 64-bit amd64 applications ssse3 cx16 mon sse3 sse2 sse fxsr mmx cmov amd_sysc cx8 tsc fpu 32-bit i386 applications ssse3 cx16 mon sse3 sse2 sse fxsr

Need HELP: trying to install DBI-1.613 or even DBI-1.616 same errors ...see message??

2011-02-12 Thread Arifuddin, Arif
HELP: $ uname -a SunOS recondfw 5.10 Generic_139556-08 i86pc i386 i86pc isainfo -v 64-bit amd64 applications ssse3 cx16 mon sse3 sse2 sse fxsr mmx cmov amd_sysc cx8 tsc fpu 32-bit i386 applications ssse3 cx16 mon sse3 sse2 sse fxsr mmx cmov sep cx8 tsc fpu bash-3.00# echo $PATH

Re: need help on $sth->bind_param

2010-06-04 Thread Robert Roggenbuck
Palla, James schrieb: PERL.ORG DBI-USERS, Where can I find the valid syntax for the DBI command "$sth->bind_param". The perldoc DBI command shows me this: $rc = $sth->bind_param($p_num, $bind_value); $rc = $sth->bind_param($p_num, $bind_value, $bind_type); $rc = $sth->bind

need help on $sth->bind_param

2010-06-04 Thread Palla, James
PERL.ORG DBI-USERS, Where can I find the valid syntax for the DBI command "$sth->bind_param". The perldoc DBI command shows me this: $rc = $sth->bind_param($p_num, $bind_value); $rc = $sth->bind_param($p_num, $bind_value, $bind_type); $rc = $sth->bind_param($p_num, $bind_val

RE: need help to install DBD::ODBC module

2009-10-14 Thread Shawn Zong
The output of perl Makefile.PL without ODBCHOME set is the same as before. Shawn -Original Message- From: Martin Evans [mailto:martin.ev...@easysoft.com] Sent: Wednesday, October 14, 2009 10:43 AM To: Shawn Zong Cc: dbi-users@perl.org Subject: Re: need help to install DBD::ODBC module

RE: need help to install DBD::ODBC module

2009-10-14 Thread Shawn Zong
AM To: Shawn Zong Cc: dbi-users@perl.org Subject: Re: need help to install DBD::ODBC module Shawn Zong wrote: > I was installing DBD:ODBC module on latest cgywin 1.5.25-15, > following the routine install procedure, i.e. 1 perl makefile.pl + 3 > makes. Yes, ODBCHOME was set manually. >

RE: need help to install DBD::ODBC module

2009-10-14 Thread Shawn Zong
cygwin. Please let me know if you need more information. Thanks. Shawn -Original Message- From: Martin Evans [mailto:martin.ev...@easysoft.com] Sent: Wednesday, October 14, 2009 9:24 AM To: Shawn Zong Cc: dbi-users Subject: Re: need help to install DBD::ODBC module Shawn Zong wrote: >

Re: need help to install DBD::ODBC module

2009-10-14 Thread Martin Evans
work it out or I'll need to take it step by step using you as a bit of a remote typist. Martin -- Martin J. Evans Easysoft Limited http://www.easysoft.com > > -Original Message- > From: Martin Evans [mailto:martin.ev...@easysoft.com] > Sent: Wednesday, October 14, 2009

Re: need help to install DBD::ODBC module

2009-10-14 Thread Martin Evans
m perl Makefile.PL below. > > > Shawn > > > -Original Message- > From: Martin Evans [mailto:martin.ev...@easysoft.com] > Sent: Wednesday, October 14, 2009 10:11 AM > To: Shawn Zong > Cc: dbi-users@perl.org > Subject: Re: need help to install DBD::ODBC

Re: need help to install DBD::ODBC module

2009-10-14 Thread Martin Evans
er 14, 2009 > 9:24 AM To: Shawn Zong Cc: dbi-users Subject: Re: need help to > install DBD::ODBC module > > Shawn Zong wrote: >> I am having difficulty to compile on Perl V5.10.0 built with MS SQL >> server 2005. The program could not find installed ODBC Driver >&g

Re: need help to install DBD::ODBC module

2009-10-14 Thread Martin Evans
Shawn Zong wrote: > I am having difficulty to compile on Perl V5.10.0 built with MS SQL > server 2005. The program could not find installed ODBC Driver Manager. > > > > Here is my configuration. > > DBI_DSN: 'dbi:ODBC: DSN_NAME', DSN_NAME is set up in System DSN in > ODBC Data source Ad

need help to install DBD::ODBC module

2009-10-14 Thread Shawn Zong
I am having difficulty to compile on Perl V5.10.0 built with MS SQL server 2005. The program could not find installed ODBC Driver Manager. Here is my configuration. DBI_DSN: 'dbi:ODBC: DSN_NAME', DSN_NAME is set up in System DSN in ODBC Data source Administrator. DBI_USER: valid d

RE: Need help for Oracle DBD::driver

2009-06-09 Thread Martin Gainty
effet légalement obligatoire. Étant donné que les email peuvent facilement être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. > From: jkst...@gmail.com > Date: Tue, 9 Jun 2009 08:51:45 -0700 > Subject: Re: Need help for Oracle DBD::driv

Re: Need help for Oracle DBD::driver

2009-06-09 Thread Jared Still
Just when I thought it was as simple as reading the error message... Jared Still Certifiable Oracle DBA and Part Time Perl Evangelist On Tue, Jun 9, 2009 at 6:42 AM, Martin Gainty wrote: > > > $driver is the driver name, > possibly defaulted to $ENV{DBI_DRIVER},and may be undefined. > > sub i

RE: Need help for Oracle DBD::driver

2009-06-09 Thread Martin Gainty
___ Note de déni et de confidentialité Ce message est confidentiel et peut être privilégié. Si vous n'êtes pas le destinataire prévu, nous te demandons avec bonté que pour satisfaire informez l'expéditeur. N'importe quelle diffusion non autorisée ou la c

Re: Need help for Oracle DBD::driver

2009-06-09 Thread Martin Evans
ranu.kum...@accenture.com wrote: > Hi, > > > > I am trying to connect to oracle (11g) database through PERL script in > windows using ActivePERL (5.10.0 Build 1004). But I am getting the > following error while connection: > > > > DBD::oracle initialisation failed: Can't locate object metho

Need help for Oracle DBD::driver

2009-06-09 Thread ranu.kumari
Hi, I am trying to connect to oracle (11g) database through PERL script in windows using ActivePERL (5.10.0 Build 1004). But I am getting the following error while connection: DBD::oracle initialisation failed: Can't locate object method "driver" via packa ge "DBD::oracle" at C:/Perl/lib/D

Re: Strange Oracle error - need help - SOLVED

2008-11-10 Thread Steve Baldwin
OK, this was something stupid I was doing, but maybe it is a bug of sorts. It turned out I was mistakenly setting {RowCacheSize} to an array ref. Perhaps DBI should check for such stupidity. Here is a simpler trace showing the problem ... [EMAIL PROTECTED] dev][2]$ ./err.plx DBI 1.52-ithrea

Re: Strange Oracle error - need help

2008-11-10 Thread Steve Baldwin
Just a follow up. It may be that this hasn't necessarily just started happening. It may be the first time this bit of code has been exercised since we switched from an 8-bit DB to UTF-8. Anyway, if anyone has seen this before and can give me some clues as to what to look for I'd be most grateful

Strange Oracle error - need help

2008-11-09 Thread Steve Baldwin
All, A part of on of our applications has just started failing with this : OCI-21500: internal error code, arguments: [kghssgai5], [4080], [293722940], [24], [], [], [], [] ��t7��t7��t7 We are using an 11i client connecting to a 9.2.0.8 instance. Our OS is Red Hat Enterprise 5, our version of D

Re: Need help with aggregate functions and queries that return zero records

2008-03-07 Thread Ashok Vemuri
Thanks for the hint, Jeff. Your suggestion worked! - Ashok On Tue, Mar 4, 2008 at 5:53 PM, Jeff Zucker <[EMAIL PROTECTED]> wrote: > Hi Ashok, > > MJD also found that bug. I've fixed it but not uploaded the new version > yet because I'm fixing a couple of other things. You can apply this > pa

Re: Need help with aggregate functions and queries that return zero records

2008-03-04 Thread Jeff Zucker
Hi Ashok, MJD also found that bug. I've fixed it but not uploaded the new version yet because I'm fixing a couple of other things. You can apply this patch yourself if you need it soon: Changing line 1189 of SQL/Statement.pm like so fixes it: - $rows = $g->calc; + $rows = $g->calc || [];

Need help with aggregate functions and queries that return zero records

2008-03-03 Thread Ashok Vemuri
Hi, I am having a bit of trouble using aggregate functions with DBI::CSV (version 0.22) and could use some help figuring out why. I have the following code snippet that queries a CSV file named "masterdata", located at c:/test/output folder. use DBI; my $dbh = DBI->

Need Help!!!

2006-10-20 Thread Satish Wadekar
Hi, I want a some solution on communicating with the java and perl . I have a raima database and i installed velocis DBI:DBD perl drivers on linux OS. Now, I have perl script which talks to the drivers and fetch the data and prints it on command prompt. Now, i want a soultion on talking to pe

Need help to convert text

2006-04-12 Thread Nayeem \(Zajil Com\)
Dear All, Actually I'm facing problem when I'm trying to write in perl same function which is available in VB and Function code is mention below Public Function EncodeArabic(ByVal arabicString As String) As String Dim _targetEncoding As System.Text.Encoding Dim _encodedCharsArray(

Cannot log in to DBI ProxyServer (Need Help fast)

2006-01-12 Thread said . laoui
Hi, I spend a long time reading faq but i didn't find a solution. I trying to connect from a server A to a remote server B (which contains Ingres database). 1 - proxy is up and running on the remote server (B) 2 - Telnet on server B works : #telnet "server B" 12400 (port : 12400 is on Listen,

need help

2005-12-16 Thread Quentin.Smith
DBD::Oracle::st execute failed: ORA-06502: PL/SQL: numeric or value error: character string buffer too small running Solaris 8, perl 5.8.3 DBD -Oracle-1.15, DBI -1.40 Quentin Smith, MBA Benchmark Electronics, Inc. office: 979-849-6550 x1250 Fax: 979-849-5290

AW: need help to know the column names and data types

2005-10-02 Thread Renee Backer
--- Von: Umesh Barik [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 30. September 2005 13:36 An: dbi-users@perl.org Betreff: need help to know the column names and data types Hi I am new to DBI programming. I am trying to write a generic package which will handle all the database operations lik

Re: need help to know the column names and data types

2005-09-30 Thread Ron Savage
On Fri, 30 Sep 2005 17:05:35 +0530, Umesh Barik wrote: Hi Umesh 1) http://charlotte.pm.org/kwiki/index.cgi?BreadProject 2) http://search.cpan.org/ and search for CGI::Application or DBIx::Admin 3) (Old code) http://savage.net.au/Perl-tutorials.html (# 35 or 41) -- Cheers Ron Savage, [EMAIL PRO

RE: need help to know the column names and data types

2005-09-30 Thread Ian Harisay
You'll want to look for metadata in the man pages of the DBI. You'll also want to make sure your particular DBD supports the DBI calls. -Original Message- From: Umesh Barik [mailto:[EMAIL PROTECTED] Sent: Friday, September 30, 2005 5:36 AM To: dbi-users@perl.org Subject: ne

need help to know the column names and data types

2005-09-30 Thread Umesh Barik
Hi I am new to DBI programming. I am trying to write a generic package which will handle all the database operations like create table, insert records, delete and also modify records. For a query user need to enter the table name only and the package will get the column names, data types, d

Re: need help to install dbi perl modules

2005-09-13 Thread Jonathan Leffler
On 9/13/05, Radhakrishna, Vasudeva <[EMAIL PROTECTED]> wrote: > > I am not able to install dbi perl modules in my HP-UX environment. I am > attaching all logs, pls look into this and help me with a solution > The log file contains warnings that the C compiler you have installed (likely to be

RE: need help to install dbi perl modules

2005-09-13 Thread Ian Harisay
@perl.org Subject: need help to install dbi perl modules Hi I am not able to install dbi perl modules in my HP-UX environment. I am attaching all logs, pls look into this and help me with a solution thanks in advance. regards, radhakrishna +hp = everything is possible <h

need help to install dbi perl modules

2005-09-13 Thread Radhakrishna, Vasudeva
  Hi   I am not able to install dbi perl modules in my HP-UX environment. I am attaching all logs, pls look into this and help me with a solution   thanks in advance.   regards, radhakrishna   +hp = everything is possible         bash-2.01# perl Makefile.PL *** You are using a perl configu

Re: Need help in compilation of DBI.c

2005-08-19 Thread Jonathan Leffler
On 8/18/05, manas sahu <[EMAIL PROTECTED]> wrote: > I am trying to build and install DBI module. I have built and installed > perl Version 5.8.7. The compiler gives the following errors; > > > "DBI.c", line 3577: Error: Unexpected type name "SV" encountered. > "DBI.c", line 3577: Error: Operand

Need help in compilation of DBI.c

2005-08-18 Thread manas sahu
Hi, I am trying to build and install DBI module. I have built and installed perl Version 5.8.7. The compiler gives the following errors; "DBI.c", line 3577: Error: Unexpected type name "SV" encountered. "DBI.c", line 3577: Error: Operand expected instead of "class". "DBI.c", line 3577: Error

Re: need help building DBI.pm 1.48

2005-08-11 Thread Tim Bunce
On Thu, Aug 11, 2005 at 08:23:59AM -0700, Jonathan Leffler wrote: > >From Changes file: > > Changes in DBI 1.33, 27th February 2003 > > NOTE: Future versions of the DBI *will not* support perl 5.6.0 or earlier. > : Perl 5.6.1 will be the minimum supported version. > > I note that Makefile.PL doe

Re: need help building DBI.pm 1.48

2005-08-11 Thread Jonathan Leffler
>From Changes file: Changes in DBI 1.33, 27th February 2003 NOTE: Future versions of the DBI *will not* support perl 5.6.0 or earlier. : Perl 5.6.1 will be the minimum supported version. I note that Makefile.PL does not enforce this (only 5.6.0). There is also a now outdated comment in Makefile

need help building DBI.pm 1.48

2005-08-11 Thread Fredrick Quasimoto
Hi all, I am having trouble building DBI.pm version 1.48 a Redhat Linux system. In the "make" I get a bunch of warnings of variables not being used (innocous enough), but then get the following error: Can't locate object method "cmd_head3" via package "Pod::Man" at /usr/local/perl/lib/5.6.0/Pod/

Re: Need Help with Unicode on ActivePerl 5.8.6, MS SQL 2000

2005-07-29 Thread Tim Bunce
On Thu, Jul 28, 2005 at 04:14:16PM +0200, Alexander Foken wrote: > Hello, > > A large Perl application (10^4 .. 10^5 lines of code) has to work with > data on an MS SQL Server 2000 containing Unicode data in NVARCHAR > columns. Perl 5.8.6 (ActivePerl) runs on the same or another Windows > 2000

Need Help with Unicode on ActivePerl 5.8.6, MS SQL 2000

2005-07-28 Thread Alexander Foken
Hello, A large Perl application (10^4 .. 10^5 lines of code) has to work with data on an MS SQL Server 2000 containing Unicode data in NVARCHAR columns. Perl 5.8.6 (ActivePerl) runs on the same or another Windows 2000 Server (usually english or german). The Unicode data may contain character

Need Help :: Error in Installing DBD::DB2

2005-07-25 Thread shabarinath.kadavendi
Hi, Can you please give the instructions to install and use Perl Interface to access DB2 I need everything from installation to sample program to access DB2 on windows from Perl. I am unable to install the DBD::DB2 I am getting the following error while installing DBD::DB2. Error: neithe

RE: Need Help to install DBD-Oracle on Windows 2000

2005-04-27 Thread Reidy, Ron
ect: RE: Need Help to install DBD-Oracle on Windows 2000 Thanks, Michael. I did read the instructions in http://ftp.esoftmatic.com/DBI/ and have tried to run ppm install ftp://ftp.esoftmatic.com/outgoing/DBI/5.8.3/DBD-Oracle.ppd, actually ppm install http://24.249.249.7/outgoing/DBI/5.8.3/

RE: Need Help to install DBD-Oracle on Windows 2000

2005-04-27 Thread Wang, Weili
TED] Sent: Wednesday, April 27, 2005 5:31 AM To: Wang, Weili Cc: dbi-users@perl.org Subject: Re: Need Help to install DBD-Oracle on Windows 2000 On 04/26/2005 03:39 PM, Wang, Weili said: > I have downloaded DBD-Oracle DBD-Oracle9-1.16-5.8.4.tar.gz from > ftp.esoftmatic.com <ftp://ftp.esoftm

Re: Need Help to install DBD-Oracle on Windows 2000

2005-04-27 Thread Michael A Chase
On 04/26/2005 03:39 PM, Wang, Weili said: I have downloaded DBD-Oracle DBD-Oracle9-1.16-5.8.4.tar.gz from ftp.esoftmatic.com website and unzipped it. Could you tell me how to install DBD-Oracle on Windows 2000 system? Did you read the instructions in http://ftp.esoftmat

Need Help to install DBD-Oracle on Windows 2000

2005-04-27 Thread Wang, Weili
Hi, I have downloaded DBD-Oracle DBD-Oracle9-1.16-5.8.4.tar.gz from ftp.esoftmatic.com website and unzipped it. Could you tell me how to install DBD-Oracle on Windows 2000 system? Thanks, Weili Wang

Re: Scrollable Cursors in DBI, Please? (Was: i need help)

2005-02-10 Thread Tim Bunce
On Thu, Feb 10, 2005 at 08:46:33AM -0800, Jonathan Leffler wrote: > On Thu, 10 Feb 2005 09:02:12 -0300, [EMAIL PROTECTED] <[EMAIL PROTECTED]> > wrote: > > well, i like move free in a table of a database, like the mysql_data_seek > > command of php, the link of the command is: > > > > http://cl2.

Scrollable Cursors in DBI, Please? (Was: i need help)

2005-02-10 Thread Jonathan Leffler
t;Date: Thu, 10 Feb 2005 00:08:09 -0800 > >From: Jonathan Leffler <[EMAIL PROTECTED]> > >Reply-To: Jonathan Leffler <[EMAIL PROTECTED]> > >To: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> > >Subject: Re: i need help > >Cc: dbi-users@perl.org > &

Re: i need help

2005-02-10 Thread Jonathan Leffler
Dear Francisco, On Tue, 8 Feb 2005 19:01:55 -0300, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > hello: > > First all, sorry because my english is bad Of course you are excused. My Spanish is deplorable. > I need mode back to the first row the pointer with dbi in mysql I am really having a

i need help

2005-02-08 Thread fjlagos
hello: First all, sorry because my english is bad I need mode back to the first row the pointer with dbi in mysql Gracias Francisco

Re: DBD:ORACLE ... having trouble, need help fast!

2004-12-13 Thread Tim Bunce
On Sun, Dec 12, 2004 at 07:08:14PM -0500, Bryan Scott wrote: > > I am sort a Perl newbie. Does anyone know what I'm > Doing wrong or what I'm missing? Don't try to build DBD::Oracle yourself. Download a pre-built one from http://ftp.esoftmatic.com/DBI Tim.

DBD:ORACLE ... having trouble, need help fast!

2004-12-12 Thread Bryan Scott
vars32.bat in vis studio but still get an error. Not Sure what LIB & INCLUDE need setting or what the linker is & why it's Not found I am sort a Perl newbie. Does anyone know what I'm Doing wrong or what I

Re: need help capturing an error

2004-11-04 Thread Tim Bunce
On Thu, Nov 04, 2004 at 02:39:00PM +0300, Odhiambo Washington wrote: > * Tim Bunce <[EMAIL PROTECTED]> [20041104 12:56]: wrote: > > Use trace() an post (an _extract_ of) the log. > > Don't forget to include relevant version numbers > > ("perl -MDBI -e 'DBI->installed_versions'" will help). > > I a

Re: need help capturing an error

2004-11-04 Thread Odhiambo Washington
* Tim Bunce <[EMAIL PROTECTED]> [20041104 12:56]: wrote: > Use trace() an post (an _extract_ of) the log. > Don't forget to include relevant version numbers > ("perl -MDBI -e 'DBI->installed_versions'" will help). I am not yet a perl programmer, but I am interested in something to do with the abov

Re: need help capturing an error

2004-11-04 Thread Tim Bunce
Use trace() an post (an _extract_ of) the log. Don't forget to include relevant version numbers ("perl -MDBI -e 'DBI->installed_versions'" will help). Tim. On Wed, Nov 03, 2004 at 03:24:20PM -0700, Ian Harisay wrote: > Hi All, > I have a query that when executed in sqlplus I get the oracle error

need help capturing an error

2004-11-03 Thread Ian Harisay
Hi All, I have a query that when executed in sqlplus I get the oracle error ORA-02395: exceeded call limit IO usage. But when I execute the same query thru the DBI I am not capturing the error. $sth just doesn't have a result set and does not tell me oracle errored out. Thanks for any suggestio

need help for DBD-Oracle

2003-09-06 Thread Tejas Babu
Is it installed successfully or not ? Still i am not able to run make . ORACLE_HOME=C:\or8i Oracle version 8i C:\perl\lib\DBD-Oracle-1.14>perl Makefile.pl -v Using DBI 1.37 installed in C:/perl/site/lib/auto/DBI Configuring DBD::Oracle ... >>> Remember to actually *READ* the README file!

need help to install DBD-Oracle-1.14

2003-09-05 Thread Tejas Babu
I am trying to install DBD-Oracle-1.114 on windows 2000 client. I have oracle 9i client install on this client. I successfully install perl and test it. I also install DBI successfully. when i tried to install DBD-Oracle-1.14 i am getting following errors.

Re: I need help for installation DBD::ORACLE

2003-07-31 Thread Jared Still
Sounds like your environment is not properly set via /usr/local/bin/oraenv. Try logging into the datbase via sqlplus. If that doesn't work, your environment is not set. export ORACLE_SID=orcl . /usr/local/bin/oraenv that would set it. Jared On Thu, 2003-07-31 at 03:15, Francisco Gonzalez w

I need help for installation DBD::ORACLE

2003-07-31 Thread Francisco Gonzalez
Hi, I have a very urgent questions for installing DBD::ORACLE. When I run the command "make test", after I've ran the command "perl Makefile.PL -l" and the command "make"; following error appeared : /bin/sh -c true /b

Re: :ODBC 1.05 on HP. Need help!!!

2003-03-21 Thread Vassiliy Truskov
y Truskov [mailto:[EMAIL PROTECTED] Verzonden: donderdag 20 maart 2003 1:11 Aan: [EMAIL PROTECTED] Onderwerp: DBD::ODBC 1.05 on HP. Need help!!! Hello, everybody. I'm trying to build DBD::ODBC 1.05 module on HP. It looks like it was built correctly, but the first test failed with the following

RE: :ODBC 1.05 on HP. Need help!!!

2003-03-21 Thread Frans . Postma
[EMAIL PROTECTED] > Onderwerp: DBD::ODBC 1.05 on HP. Need help!!! > > > Hello, everybody. > > I'm trying to build DBD::ODBC 1.05 module on HP. It looks > like it was built > correctly, but the first test failed with the following error: > t/01base/usr

DBD::ODBC 1.05 on HP. Need help!!!

2003-03-21 Thread Vassiliy Truskov
Hello, everybody. I'm trying to build DBD::ODBC 1.05 module on HP. It looks like it was built correctly, but the first test failed with the following error: t/01base/usr/lib/dld.sl: Can't shl_load() a library containing Thread Local Storage: /usr/lib/libc.2 /usr/lib/dld.sl: Exec forma

RE: need help on "bind_columns "

2003-03-20 Thread Rozengurtel, Daniel
This is WONDERFUL !!! Works very nicely :) thanx a lot. Dan -Original Message- From: Michael A Chase [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2003 3:36 PM To: '[EMAIL PROTECTED]'; Rozengurtel, Daniel Subject: Re: need help on "bind_columns " On Thu,

Re: need help on "bind_columns "

2003-03-20 Thread Michael A Chase
On Thu, 20 Mar 2003 15:06:28 -0500 "Rozengurtel, Daniel" <[EMAIL PROTECTED]> wrote: > I have a question about bind_columns feature. > In my next piece of code I am trying to get the values from specific fields > of a table to be associated with their names in ISSU_FIELDS hash. I cannot > indicate

need help on "bind_columns "

2003-03-20 Thread Rozengurtel, Daniel
Hello all, I have a question about bind_columns feature. In my next piece of code I am trying to get the values from specific fields of a table to be associated with their names in ISSU_FIELDS hash. I cannot indicate the exact fields I wanna fetch since its going to be chaning as per client. Ther

RE: :ODBC 1.05 on HP. Need help!

2003-03-20 Thread Frans . Postma
maart 2003 1:19 > Aan: [EMAIL PROTECTED] > Onderwerp: DBD::ODBC 1.05 on HP. Need help! > > > Hello, everybody. > > I'm trying to build DBD::ODBC 1.05 module on HP. It looks > like it was built > correctly, but the first test failed with the following error: > t/0

Re: :ODBC 1.05 on HP. Need help!

2003-03-19 Thread Vassiliy Truskov
From: Vassiliy Truskov [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 4:19 PM To: [EMAIL PROTECTED] Subject: DBD::ODBC 1.05 on HP. Need help! Hello, everybody. I'm trying to build DBD::ODBC 1.05 module on HP. It looks like it was built correctly, but the first test failed with the follo

DBD::ODBC 1.05 on HP. Need help!

2003-03-19 Thread Vassiliy Truskov
Hello, everybody. I'm trying to build DBD::ODBC 1.05 module on HP. It looks like it was built correctly, but the first test failed with the following error: t/01base/usr/lib/dld.sl: Can't shl_load() a library containing Thread Local Storage: /usr/lib/libc.2 /usr/lib/dld.sl: Exec forma

RE: Need help installing DBI on HP/UX 11.00

2003-03-13 Thread Frans . Postma
; > -Oorspronkelijk bericht- > Van: Sancho, Nick [mailto:[EMAIL PROTECTED] > Verzonden: woensdag 12 maart 2003 19:52 > Aan: [EMAIL PROTECTED] > Onderwerp: Need help installing DBI on HP/UX 11.00 > > > I'm getting an error installing DBI-1.08 on HP/UX 11.00 >

Need help installing DBI on HP/UX 11.00

2003-03-12 Thread Sancho, Nick
I'm getting an error installing DBI-1.08 on HP/UX 11.00 Heres what I'm getting: [EMAIL PROTECTED]:/opt/deebee/DBI-1.08 # /opt/perl5/bin/perl Makefile.PL *** Note: The optional PlRPC-modules (RPC::PlServer etc) are not installed. If you want to use the DBD::Proxy driver and DBI::ProxyServe

Re: blob error need help

2003-02-24 Thread Jared Still
= $dbh->prepare(qq{select preview from preview where asset_id = > 'EB00000199'}); $sth->execute(); > > > > > > > > -Original Message- > From: Jenda Krynicky [mailto:[EMAIL PROTECTED] > Sent: Monday, February 17, 2003 3:45 PM > To: Scot

Re: Need help!

2003-02-18 Thread Pierre Leblanc
xpectedly > > at /usr/local/lib/perl5/site_perl/5.005/lci.pm line 41. > > > > Any suggestions? > > > > Pierre > > > > > > -- Original Message --- > > From: Joe Raube <[EMAIL PROTECTED]> > > To: Pierre Leblanc <[EMAIL

Need help!

2003-02-18 Thread Pierre Leblanc
I have a network with 2 FreeBSD servers configured with Apache. Both servers runs PERL with DBI. Now I want to connect from one server to a database on the other one. The following script works well for a local database: my ($dbname) = "lci"; my ($user) = "www"; # conn

Re: blob error need help

2003-02-18 Thread Sumitro Chowdhury
Scott Purcell Cc: [EMAIL PROTECTED] Subject: Re: blob error need help My silly, off-the-cuff guess is that you need DBD built using OCI8 libraries. Did you build DBD yourself, or download a package? Can you build it yourself (perl Makefile.PL; make; make test; make install)? If you are using Or

Re: blob error need help

2003-02-17 Thread Dave K
Repeat the ppm exercise with DBD::Oracle8 as the target. > Hmm seems ActiveState did compile the DBD::Oracle against Oracle 7. > And none of the other PPM repositories I know of contain the module.

RE: blob error need help

2003-02-17 Thread Jenda Krynicky
From: "Scott Purcell" <[EMAIL PROTECTED]> > Good. That worked. I do have 1.12 installed now and I verified via the > ppm version check. > > But when I run my original problem, it looks like nothing has changed. > (I did get a new window before running this). > > C:\dbi_play\dbi>perl getblob > D

RE: blob error need help

2003-02-17 Thread Scott Purcell
199'}); $sth->execute(); -Original Message- From: Jenda Krynicky [mailto:[EMAIL PROTECTED]] Sent: Monday, February 17, 2003 3:45 PM To: Scott Purcell; [EMAIL PROTECTED] Subject: RE: blob error need help From: "Scott Purcell" <[EMAIL PROTECTED]> > I do not k

RE: blob error need help

2003-02-17 Thread Jenda Krynicky
From: "Scott Purcell" <[EMAIL PROTECTED]> > I do not know how to rebuild DBD::Oracle against Oracle 8i libraries > on my 2000 box. I do not think it is possible. > > I used ppm3 and did a search on the dbd-oracle. The problem is two > come up DBD-Oracle [1.12] and DBD-Oracle [1.06] The problem is

RE: blob error need help

2003-02-17 Thread Scott Purcell
select, so it keeps installing 1.06. Any more ideas? Thanks, Scott -Original Message- From: Sumitro Chowdhury [mailto:[EMAIL PROTECTED]] Sent: Monday, February 17, 2003 3:32 PM To: Scott Purcell Cc: [EMAIL PROTECTED] Subject: Re: blob error need help > > while (my $doc

RE: blob error need help

2003-02-17 Thread Scott Purcell
N Murray [mailto:[EMAIL PROTECTED]] Sent: Monday, February 17, 2003 3:00 PM To: Scott Purcell Cc: [EMAIL PROTECTED] Subject: Re: blob error need help My silly, off-the-cuff guess is that you need DBD built using OCI8 libraries. Did you build DBD yourself, or download a package? Can you build it

  1   2   >