Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

dbi-users

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 646
  • Category: Perl
  • Founded: Aug 7, 1998
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 31245 - 31274 of 31274   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Simplify | Expand Author Sort by Date v
31274 Dave Rolsky
autarch@... Send Email
Jan 19, 2001
8:11 am
(in cleanup) dbih_getcom handle 'DBI::dr=HASH(0x8479e64)' is not a DBI handle (has no magic) during global destruction. SV = RV(0x84741e0) at 0xbffff5e8 REFCNT...
31273 P B
pcboutro@... Send Email
Jan 19, 2001
6:47 am
I couldn't dig up this problem in any FAQs or archives, but it can't be new.... I installed DBI and DBD::Oracle on a win32 (98) machine. I'm running ...
31272 Ken Lai
lacoste@... Send Email
Jan 19, 2001
5:12 am
Hi Lincoln, For 1, I think the possibility is very small, because 1. I have the same environments on Solaris boxes. they all works fine with DBD::Oracle. (I...
31271 Felzien Michael
wm4_felzien@... Send Email
Jan 19, 2001
4:57 am
Greetings: I'm new to this list but it seems like the perfect forum for asking this question. I'm trying to get DBI to properly install using cpan or the tar...
31270 Jeff Urlwin
jurlwin@... Send Email
Jan 19, 2001
3:27 am
Merant's ODBC driver manager is not providing SQLParamData as a function call. Use the iODBC manager and Merant's drivers. Jeff ... DBI HOME PAGE AND...
31269 Sterin, Ilya
Isterin@... Send Email
Jan 19, 2001
12:14 am
Usually this can be fixing the LD_LIBRARY_PATH to include the Oracle includes for the user you are logged in as. Ilya ... From: Baxter, Lincoln To: 'Metzler,...
31268 Baxter, Lincoln
LBaxter@... Send Email
Jan 19, 2001
12:06 am
At the risk of asking some embarrasing questions: Do you have the following files: /your/install/prefix/perl/lib/site_perl/5.6.0/PA-RISC2.0/auto/DBD/Oracle/Ora...
31267 Metzler, Larry
lmetzler@... Send Email
Jan 18, 2001
11:10 pm
I just installed DBI and DBD::Oracle on an hpux. The make test and make install worked fine, but when i attempted to write a test perl script, i received the...
31266 Sterin, Ilya
Isterin@... Send Email
Jan 18, 2001
9:56 pm
Don't think two WHERE clauses will work. Rather try this... WHERE jobid = '$jobid&#39; AND filename => '?'; Ilya ... From: Ronald J Kimball To: Purcell, Scott Cc:...
31265 Ronald J Kimball
rjk-dbi@... Send Email
Jan 18, 2001
9:08 pm
... Could you show us the actual if() line? ... BTW, that's logically equivalent to: if ( ! defined $a || $a eq '' ) { Ronald ... DBI HOME PAGE AND ARCHIVES:...
31264 Ronald J Kimball
rjk-dbi@... Send Email
Jan 18, 2001
9:07 pm
... You're on the right track, you just don't want the single quotes around the question mark. Ronald ... DBI HOME PAGE AND ARCHIVES:...
31263 Tim Harsch
harsch1@... Send Email
Jan 18, 2001
9:01 pm
Thanks Ronald, I tried your change of (good catch) if( ! defined $gb_gi || $gb_gi eq '' ) but it does not prevent the uninit warning. line 88 is the if( !...
31262 Tim Harsch
harsch1@... Send Email
Jan 18, 2001
8:49 pm
Yes. If I change it to #if( ! defined $gb_gi || $gb_gi eq '' ) { # line 88 # $sth->bind_param( 3, undef ); # } else { $sth->bind_param( 3, $gb_gi ); # } The...
31261 Stephen Clouse
stephenc@... Send Email
Jan 18, 2001
8:44 pm
... Hash: SHA1 ... spool is an sqlplus-specific command -- e.g., *not* a valid SQL statement. - -- Stephen Clouse <stephenc@...> Senior Programmer,...
31260 Thomas A. La Porte
tlaporte@... Send Email
Jan 18, 2001
8:43 pm
SPOOL is not an SQL command, it is an SQL*Plus command. You'll need to use some other mechanism to redirect your output to a file. ... DBI HOME PAGE AND...
31259 Tim Harsch
harsch1@... Send Email
Jan 18, 2001
1:58 am
Yes it will. I just checked again on perl 5.005 I wonder why -w sees it as a problem in the first place. ... http://www.symbolstone.org/technology/perl/DBI/ ...
31258 Tim Harsch
harsch1@... Send Email
Jan 18, 2001
1:53 am
-or- { local $^W; bind_param( 1, undef ); } ... DBI HOME PAGE AND ARCHIVES: http://www.symbolstone.org/technology/perl/DBI/ To unsubscribe from this list,...
31257 Stephen Clouse
stephenc@... Send Email
Jan 18, 2001
1:50 am
... Hash: SHA1 ... If you're using perl >= 5.6, take advantage of the fine lexical warnings feature. $value = SomethingThatMayOrMayNotBeDefined(); no warnings...
31256 Abhijit Menon-Sen
ams@... Send Email
Jan 18, 2001
1:37 am
... No, it won't. The warning applies only when you use a variable in an expression as though it were already defined, and it was interpreted as a 0 or "". See...
31255 Tim Harsch
harsch1@... Send Email
Jan 18, 2001
1:20 am
I think most of us would agree that using perl -w is a good thing (in fact even the DBI trace files will tell you you should). Except what do you do in the...
31254 Purcell, Scott
spurcell@... Send Email
Jan 18, 2001
12:31 am
Hello, I was just curious where the Megaliths Database Prototype was that used to be at the Symbolstone site? It was Alligators demo that used the DBI. Does ...
31253 Seger, Jeffrey
Jeffrey-Seger@... Send Email
Jan 17, 2001
10:34 pm
In order to do a "DSN-less"; connect you need to include the full path to the database file using the UNC convention. See 'perldoc DBD::ODBC' for the details. ...
31252 Seger, Jeffrey
Jeffrey-Seger@... Send Email
Jan 17, 2001
10:15 pm
from "perldoc DBD::Oracle": Connect Attributes The ora_session_mode attribute can be used to connect with SYSDBA authorization and SYSOPER authorization. $mode...
31251 Baxter, Lincoln
LBaxter@... Send Email
Jan 17, 2001
9:43 pm
... *************** else { # --- trawl the guts of Oracle's ... $linkwith =~ s/-Y P,/-YP,/g if $Config{'cc'} =~ /gcc/; $linkwith =~ s:-R /:-R/:g if $os eq...
31250 Baxter, Lincoln
LBaxter@... Send Email
Jan 17, 2001
9:43 pm
=head1 INTRODUCTION Building a dynamically linked working version of the Oracle DBD driver on HPUX (11.00) has been a challenge for many. For months after...
31249 Baxter, Lincoln
LBaxter@... Send Email
Jan 17, 2001
9:35 pm
Hi Tim, Please find attached (as promised), the new -- now demystified... err.. well... no longer mythical -- README.hpux (hopefully to be included in the next...
31248 Ian Summers
ian@... Send Email
Jan 17, 2001
8:54 pm
Hi Try $dbh = DBI->connect("DBI:ODBC:$odbc", $user, $pass); where $odbc is the name given to a system DSN that you set through the Control panel. I believe you...
31247 Garcia, Gilbert
ggarcia@... Send Email
Jan 17, 2001
8:25 pm
try sqlplus internal also, if you want to suppress the oracle display "junk" after you login, use the -s option/switch. sqlplus -s internal Gil Garcia DBA ...
31246 Patel, Umesh
UPatel@... Send Email
Jan 17, 2001
7:23 pm
Yes, script started fine and for some reason it can not connect to database (may be database down or listner died or something else) so it goes to loop which...
31245 Neal Burke
alcamar@... Send Email
Jan 17, 2001
6:58 pm
Hi, I'm trying to get my perl cgi scripts to work with a Microsoft access database and its not going very well... To test my scripts I have an NT machine with...
Messages 31245 - 31274 of 31274   Newest  |  < Newer  |  Older >  |  Oldest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help