in reply to Re: Why was it neccessary to pass a DBI handler by reference?
in thread Why was it neccessary to pass a DBI handler by reference?
Hm... following the logic of the above (if I am not mistaken): I am (a) wrong, and (b) kudra needed to have a reference to a reference???
Not to be a pain in your neck, but could you explain a bit more what you meant? For example, take the following code:
#!/usr/local/bin/perl use warnings; use diagnostics; use strict; my $x = "Just another scalar"; my $y = \$x; print $x."\n"; print $y."\n";
Am i totally of base with this??? Or am I missing something very basic?
/oliver/
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Why was it neccessary to pass a DBI handler by reference?
by Abigail-II (Bishop) on Jan 28, 2004 at 17:00 UTC | |
Re: Re: Re: Why was it neccessary to pass a DBI handler by reference?
by revdiablo (Prior) on Jan 28, 2004 at 18:53 UTC |