Search Discussions
-
Could someone explain: Why will fetchrow_hashref change in the future to return the same reference each time? I would like to understand the rationale. rob Live the dream.
Rob Ransbottom
Sep 11, 2001 at 6:33 pm
Feb 4, 2002 at 7:40 pm -
Hi All, this one seems to puzzle me on how to avoid an unnecessary db error. I need to run a tally count on a couple tables, and if there isn't any data in the table it displays the dbError, altho ...
Mickalo
Sep 22, 2001 at 11:40 pm
Sep 24, 2001 at 2:15 pm -
Hello, I am trying to install DBD::Oracle on a Redhat Linux 7.1 box for the sole purpose of connecting to a remote Oracle server. On our Windows boxes we need to install sqlnet (which we have for ...
Philip Daggett
Sep 26, 2001 at 9:01 pm
Oct 1, 2001 at 5:44 pm -
Lokmane
Sep 20, 2001 at 12:40 pm
Sep 20, 2001 at 4:03 pm -
Sorry to interrupt on you on such a tragic day. I just want to let you know that question signs ('?') inside /* ... */ comments in a SQL-statement gives the following error message: DBD::mysql::st ...
Morten Hanshaugen
Sep 11, 2001 at 9:07 pm
Sep 19, 2001 at 5:56 am -
I followed the trails of "Programming the Perl DBI, Appendix B" to freeodbc to .... to easysoft.org... I read for hours history requests at dejanews I am now more confused than when I started. I have ...
Robert Lopez
Sep 14, 2001 at 4:27 pm
Sep 14, 2001 at 8:50 pm -
Environment: SunOS 5.5.1 Generic_103640-36 sun4u sparc SUNW,Ultra-2 Oracle Enterprise Server 8.0.5 (on remote SunOS) DBI 1.20 (all tests OK) DBD::Oracle 1.12 (all tests OK) Hi, I decided to present ...
Wojciech Pietron
Sep 17, 2001 at 10:14 am
Sep 21, 2001 at 2:50 pm -
Are the DBD Modules Thread safe, DBD::Informix in particular. Thanks -- ------------------------------------ ------------------------------------ "given enough time and resources we can accomplish ...
James Maes
Sep 14, 2001 at 6:56 pm
Sep 20, 2001 at 2:21 pm -
I have a query that works just fine in Oracle SQL*Plus, but I receive the following error when run through DBI. Line 35 states: my $sth = $dbh- prepare(qq(SELECT fuser.us_initl, I'm running: Redhat ...
Michael Ragsdale
Sep 17, 2001 at 7:02 pm
Sep 18, 2001 at 5:09 pm -
Im trying to install DBD-Oracle-1.12 on a HP-UX 11 host. The box is a PA-Risc 1.1 box with Oracle 8.1.7. I've compiled perl 5.6.1 on it as README.hpux states and done everything else that document ...
Richard Allen
Sep 25, 2001 at 5:20 pm
Sep 27, 2001 at 3:02 pm -
I was about to upgrade our installation when I noticed this in the changelog. Tim Bunce <[email protected] writes: We ran into this problem once before when we first upgraded to Oracle 8.1.6. At ...
Greg Stark
Sep 21, 2001 at 11:16 pm
Sep 27, 2001 at 9:27 am -
Hi Folks, I've run across an issue in our environment regarding concurrent read/write access of a LOB record. I have duplicated it on Oracle 9i / 8i (8.1.5 and 8.1.7), DBI 1.15/1.18, DBD::Oracle ...
Steven Vetzal
Sep 20, 2001 at 5:37 pm
Sep 24, 2001 at 10:00 pm -
Hi, Let me briefly explain what I need: I'm working on application that uses perl DBI internally and provides web user interface. I need to be able to provide nice database table access from the web, ...
Alex Gerasev
Sep 9, 2001 at 4:51 am
Sep 19, 2001 at 5:47 pm -
I have a minor optimization suggestion. Instead of this: unless ($sth_routine_name) { #setup statement handle } Do this: $sth_routine_name ||= $dbh- prepare(....); If $sth_routine_name is already ...
Wsheldah
Sep 13, 2001 at 3:21 pm
Sep 15, 2001 at 9:48 pm -
I know this might be a wrong place to post question but I need quick tip here!!! I am running perl 5.1.6.... whenever I run "perl Makefile.PL", it keep complaining the file could not be found. The ...
George Xu
Sep 9, 2001 at 4:04 am
Sep 13, 2001 at 1:19 pm -
Hello all: Just a quick question concerning putting images in a database- I want to add a field for images within my mysql database: how should I go about doing this? I have tried -- ALTER TABLE ...
Todd Moy
Sep 7, 2001 at 1:33 pm
Sep 7, 2001 at 5:06 pm -
hi, I want a litle more extended sytax for selectall_hashref(), or if u can tell me how the achieve this : my $Query = qq{SELECT field1, field2, field3}; my $res = $dbh- selectall_hashref($Query, ...
Raptor
Sep 5, 2001 at 4:26 pm
Sep 6, 2001 at 12:30 am -
Hi Gurus I am encountering error while trying to run "make test" command. UNIX version: dgux av003drpfm R4.20MU06 generic AViiON Pentium Oracle: 8.1.6 The errors (make test TEST_VERBOSE=1) are: ...
Chakravorty, Kunal
Sep 27, 2001 at 1:48 am
Oct 17, 2001 at 8:19 am -
Have been using DBI with MySQL & Oracle for some time now. Recently, the powers that be (i.e my bosses) decided to use PL/SQL stored procedures for some of our rather complex queries. The PL/SQL guys ...
Jon Williams
Sep 5, 2001 at 12:50 pm
Oct 8, 2001 at 1:28 am -
Is there a possibility to get only the last entry of a table ? Sure, I could read the whole content into a loop but this is IMHO not the best solution. my $numFields = $sth- {'NUM_OF_FIELDS'}; while ...
Mark Walter
Sep 28, 2001 at 10:41 am
Sep 30, 2001 at 1:20 pm -
Hi Jeff, I have a program listed below that shows what I think is a bug. you can call the script with these parameters: -G user_name -D database -r uncomment the line that is a "select user_name()" ...
Tim Harsch
Sep 28, 2001 at 11:06 pm
Sep 30, 2001 at 2:31 am -
Tim, for a while now you've been saying that you will change fetchrow_hashref so that its performance is close to or the same as fetchrow_arrayref, but the perldocs still have this disclaimer: ...
Hardy Merrill
Sep 12, 2001 at 12:46 pm
Sep 13, 2001 at 1:25 pm -
I'm wondering what other people have developed as database independent way(s) of determining if the insert or update being done results in a duplicate key situation. I can think of 2 methods to ...
Hardy Merrill
Sep 28, 2001 at 9:06 pm
Sep 29, 2001 at 6:05 am -
Hi there I'm trying to find a mechanism for dealing with large BLOBs, where large is a value greater than the memory available to the process. This is used in a CGI application. I've been reading ...
Adam Kennedy
Sep 21, 2001 at 2:25 am
Sep 24, 2001 at 2:58 am -
I noticed that DBD-Oracle trims blanks at the end of a field inserted into a VARCHAR2-type column, even though ChopBlanks is set to False. Is that expected behaviour ? It messes up FreezeThaw. I'am ...
Arjan van Ham
Sep 18, 2001 at 6:59 pm
Sep 19, 2001 at 12:14 pm -
My name is Karina Nagahama. I want to know about DBI. I'm working on Windows NT, Apache, Perl, mod_perl Oracle8 and DBI. I'm using DBI in a .pm file. In order to select information from the database ...
Karina Nahagama
Sep 12, 2001 at 4:50 am
Sep 12, 2001 at 10:55 am -
Hi I have successfully been using DBD::CSV for the last year and recently upgraded to Red Hat 7.0 from 6.2. The problem is that ever since the upgrade, the ORDER BY clause on an ISO date field (i.e ...
Alex Schuilenburg
Sep 10, 2001 at 5:39 pm
Sep 11, 2001 at 10:43 am -
I am writing a Perl/DBI application. I need to initially issue a select statement and then determine if any records are returned. Could someone provide me with an example of how to determine if no ...
Paul Maine Jr.
Sep 10, 2001 at 7:40 pm
Sep 11, 2001 at 7:56 am -
I have a cgi script that can't seem to connect to a mysql database when running from the web. When I logon and run it from the command line, it works fine! It dies on the $dbh- connect(...) line. It ...
Ian Feldberg
Sep 6, 2001 at 4:16 pm
Sep 7, 2001 at 3:16 pm -
I am having a problem with the following SQL in a single statement: my $sql = qq|create opaque type mytype ( internallength=variable, MAXLEN=512 ); GRANT usage on type mytype to user; my $dbh = DBI- ...
Korey Klier
Sep 6, 2001 at 1:42 pm
Sep 6, 2001 at 5:36 pm -
Hi, I have already saw similar questions but I think my pb is a bit different. I wrote a perl script that use an oracle 9i DB throug DBI DBD::Oracle. This script work fine when started from command ...
Eddie iannuccelli
Sep 6, 2001 at 6:58 am
Sep 6, 2001 at 8:25 am -
catch exceptions with eval: eval { #DBI stuff connect, prepare, execute, fetch, etc. # (with RaiseError= 1 !!!) }; trap_die($@) if $@; HTH, Douglas Wilson
Wilson, Doug
Sep 25, 2001 at 10:35 pm
Sep 28, 2001 at 7:59 pm -
Hello I am a beginner in Perl . I have installed Active perl latest version in my Win NT machine. I am trying to install DBI module in my machine by both ppm and manual method. While installing I am ...
Abhra
Sep 27, 2001 at 1:58 pm
Sep 27, 2001 at 4:29 pm -
Trying to get output from a procedure call. Definitely being a pain. Yes, yes, I've looked at perldoc DBD::Oracle and that didn't seem to work. I've even read up on perldoc.com about DBI, and various ...
Jones Robert Contr 81 CS/SCK
Sep 26, 2001 at 9:10 pm
Sep 27, 2001 at 3:42 pm -
The following, if executed from within a Perl script, will hang indefinitely while trying to do the 'execute()' statement. my $sth = DBH()- prepare( "UPDATE ldb_ad_t SET most_recent_print_date = ...
Dave Storrs
Sep 26, 2001 at 9:47 pm
Sep 27, 2001 at 5:33 am -
I don't seem to be able to 'SET IDENTITY_INSERT {table} ON' using DBI::ODBC. Anybody have suggestions? Many Thanks!!
Pat Sheehan
Sep 25, 2001 at 2:26 pm
Sep 26, 2001 at 3:25 pm -
Hi, i'm running a Linux-server and need to get information from an Microsoft SQL-server. Is there a cheap possibility to do this. Bye Casper
Casper van der Harst
Sep 25, 2001 at 2:23 pm
Sep 25, 2001 at 2:53 pm -
Folks, How are you ?. I have downloaded DBI-1.20.tar.gz from the www.perl.org. Here is the system info. SunOS suncore 5.8 Generic_108528-09 sun4u sparc SUNW,Ultra-60 I have updated Makefile for gcc ...
Srinivasa Rao Katta
Sep 13, 2001 at 4:45 pm
Sep 24, 2001 at 3:15 pm -
To those using an Oracle client in a network: In www.globecom.net/tora you'll find a very nice GUI interface to deal with you're Oracle server. I had a go at it and it's phantastic! Vittorio
Vittorio
Sep 21, 2001 at 11:38 am
Sep 24, 2001 at 10:33 am -
----- Forwarded message from Alan Evetts <[email protected] ----- Delivered-To: tim.bunc[email protected] Date: Thu, 20 Sep 2001 10:13:31 -0700 From: Alan Evetts <[email protected] To: ...
Tim Bunce
Sep 20, 2001 at 7:59 pm
Sep 20, 2001 at 10:03 pm -
Hello, I wrote a simple insert program like $sth = $dbh- prepare( qq{ INSERT INTO $table VALUES ($values[0],?,?,?,?,?,?,?,$values[8], $values[9], $values[10],?,?,?,?,?,?,?,?,?) } ); $sth- ...
M. Jang
Sep 16, 2001 at 9:20 pm
Sep 17, 2001 at 6:21 am -
I need help!! I'm running Personal Oracle8i and ActiveState's perl on the same win98 machine. All I'm trying to do is make a connection. If anyone would please help me do this I'd appreciate it. So ...
Byron Wise
Sep 12, 2001 at 3:44 am
Sep 12, 2001 at 4:23 pm -
Hi, Is there any attribute(s) of the database handle that identify the sid and serial# of the connection? That is, I want to use DBI to kill some sessions (but I don't want to kill myself). Or is ...
Jay Strauss
Sep 11, 2001 at 12:38 am
Sep 11, 2001 at 3:20 pm -
Dear gurus ! i want to convince the managers & co-workers at my company to start using perl as a standart scripting language here. So I need your input on the following points , please : 1) success ...
Andrey Bronfin
Sep 11, 2001 at 12:15 pm
Sep 11, 2001 at 1:10 pm -
message is coming from? The error points to the disconnect line, but I'd sure like to be able to tell which handle isn't being finished. I think I found them all, but obviously not. ...
Jim Lynch
Sep 4, 2001 at 12:34 pm
Sep 10, 2001 at 8:56 am -
My name is Karina Nagahama, I want to install DBD::Oracle, but I have problems in building it. I download DBD-Oracle-1.08.tar.gz from http://velocity.activestate.com/code/cpan/d/db/DBD-Oracle.html I' ...
Karina Nahagama
Sep 7, 2001 at 7:20 am
Sep 8, 2001 at 1:39 am -
Dear Tim, I'm trying to install DBI-1.20 on an Ultra 5 running Solaris 8. Solaris 8 comes with Perl and GNU software already installed, so the install is using GNU tools. I did install make-3.78.1 ...
Larry Schweizer
Sep 3, 2001 at 4:42 pm
Sep 4, 2001 at 3:43 pm -
I was wondering if anyone had suggestions about the following problem I am having with DBD::Pg. A script I have is trying to insert the following statement into a mail table (schema below): INSERT ...
Warren Volz
Sep 26, 2001 at 9:52 pm
Sep 28, 2001 at 11:36 am -
This is off topic but I can't find any resources. If anyone can point me or answer directly I'd appreciate it. I have a hash tying package that works EXCEPT when references are returned and used in ...
Steve Sapovits
Sep 27, 2001 at 3:50 pm
Sep 27, 2001 at 11:25 pm -
Hi all I don't know if this has been discussed on this list before, but I just thought I'd mention it as it took me a while to figure out why my code wasn't working. If you call an Oracle supplied ...
Dan Horne
Sep 26, 2001 at 3:13 am
Sep 27, 2001 at 9:49 pm
Group Overview
group | dbi-users |
categories | perl |
discussions | 200 |
posts | 557 |
users | 223 |
website | dbi.perl.org |
223 users for September 2001
Archives
- May 2016 (10)
- April 2016 (15)
- February 2016 (4)
- January 2016 (6)
- December 2015 (17)
- November 2015 (7)
- October 2015 (23)
- September 2015 (6)
- March 2015 (14)
- February 2015 (27)
- January 2015 (30)
- December 2014 (30)
- November 2014 (5)
- October 2014 (22)
- September 2014 (5)
- August 2014 (9)
- July 2014 (11)
- June 2014 (14)
- May 2014 (14)
- April 2014 (30)
- March 2014 (16)
- February 2014 (47)
- January 2014 (36)
- December 2013 (23)
- November 2013 (20)
- October 2013 (32)
- September 2013 (40)
- August 2013 (31)
- July 2013 (10)
- June 2013 (43)
- May 2013 (46)
- April 2013 (16)
- March 2013 (11)
- February 2013 (18)
- January 2013 (8)
- December 2012 (11)
- November 2012 (30)
- October 2012 (42)
- September 2012 (9)
- August 2012 (71)
- July 2012 (18)
- June 2012 (35)
- May 2012 (34)
- April 2012 (16)
- March 2012 (33)
- February 2012 (50)
- January 2012 (25)
- December 2011 (38)
- November 2011 (29)
- October 2011 (71)
- September 2011 (57)
- August 2011 (34)
- July 2011 (25)
- June 2011 (37)
- May 2011 (71)
- April 2011 (41)
- March 2011 (57)
- February 2011 (70)
- January 2011 (53)
- December 2010 (76)
- November 2010 (36)
- October 2010 (92)
- September 2010 (79)
- August 2010 (59)
- July 2010 (74)
- June 2010 (129)
- May 2010 (121)
- April 2010 (148)
- March 2010 (92)
- February 2010 (76)
- January 2010 (75)
- December 2009 (64)
- November 2009 (69)
- October 2009 (110)
- September 2009 (49)
- August 2009 (67)
- July 2009 (51)
- June 2009 (106)
- May 2009 (91)
- April 2009 (81)
- March 2009 (100)
- February 2009 (71)
- January 2009 (91)
- December 2008 (63)
- November 2008 (98)
- October 2008 (98)
- September 2008 (114)
- August 2008 (65)
- July 2008 (96)
- June 2008 (89)
- May 2008 (116)
- April 2008 (148)
- March 2008 (123)
- February 2008 (81)
- January 2008 (99)
- December 2007 (75)
- November 2007 (76)
- October 2007 (91)
- September 2007 (107)
- August 2007 (207)
- July 2007 (205)
- June 2007 (141)
- May 2007 (135)
- April 2007 (164)
- March 2007 (141)
- February 2007 (178)
- January 2007 (192)
- December 2006 (84)
- November 2006 (143)
- October 2006 (96)
- September 2006 (288)
- August 2006 (235)
- July 2006 (173)
- June 2006 (224)
- May 2006 (225)
- April 2006 (268)
- March 2006 (162)
- February 2006 (234)
- January 2006 (263)
- December 2005 (230)
- November 2005 (206)
- October 2005 (175)
- September 2005 (189)
- August 2005 (191)
- July 2005 (260)
- June 2005 (225)
- May 2005 (263)
- April 2005 (369)
- March 2005 (302)
- February 2005 (222)
- January 2005 (291)
- December 2004 (364)
- November 2004 (335)
- October 2004 (317)
- September 2004 (362)
- August 2004 (368)
- July 2004 (306)
- June 2004 (269)
- May 2004 (214)
- April 2004 (273)
- March 2004 (352)
- February 2004 (326)
- January 2004 (458)
- December 2003 (278)
- November 2003 (308)
- October 2003 (338)
- September 2003 (408)
- August 2003 (386)
- July 2003 (415)
- June 2003 (541)
- May 2003 (674)
- April 2003 (461)
- March 2003 (647)
- February 2003 (495)
- January 2003 (514)
- December 2002 (612)
- November 2002 (528)
- October 2002 (705)
- September 2002 (567)
- August 2002 (509)
- July 2002 (576)
- June 2002 (689)
- May 2002 (529)
- April 2002 (794)
- March 2002 (656)
- February 2002 (706)
- January 2002 (794)
- December 2001 (456)
- November 2001 (637)
- October 2001 (772)
- September 2001 (557)
- August 2001 (889)
- July 2001 (720)
- June 2001 (865)
- May 2001 (1,031)
- April 2001 (908)
- March 2001 (715)
- February 2001 (568)
- January 2001 (128)