User John Siracusa - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T05:01:22Zhttp://stackoverflow.com/feeds/user/164http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1833554/how-does-the-qr-string-operator-in-perl-decide-whether-or-not-to-compile-string/1834304#18343047Answer by John Siracusa for How does the qr/STRING/ operator in Perl decide whether or not to compile STRING?John Siracusa2009-12-02T16:58:00Z2009-12-02T19:55:30Z<p>The "possibly compiles" part of the documentation probably refers to situations like the one shown below, where the argument to <code>qr//</code> is an already-compiled regex:</p>
<pre><code>use re 'debug';
$re1 = qr/foo/;
$re2 = qr/$re1/;
</code></pre>
<p>Running that program shows only one regex being compiled.</p>
<p>Regardless of the intent of that passage, sly allusions to internals details does not clear documentation make. I think a doc patch would be beneficial.</p>
http://stackoverflow.com/questions/322173/why-does-this-perl-begin-block-act-differently-in-the-debugger9Why does this Perl BEGIN block act differently in the debugger?John Siracusa2008-11-26T21:08:42Z2009-11-08T13:40:39Z
<p>I have some Perl code that runs fine outside the debugger:</p>
<pre><code>% perl somefile.pl
</code></pre>
<p>but when I run it inside the debugger:</p>
<pre><code>% perl -d somefile.pl
</code></pre>
<p>it behaves differently.</p>
<p>The files in question (there are several) are part of the test suite for a large Perl module (~20K lines of code). The tests do a lot of setup work at compile time and use BEGIN blocks. Here's some minimal reproduction code:</p>
<pre><code>BEGIN
{
package MyEx;
sub new { bless {}, shift }
package main;
eval { die MyEx->new };
if($@)
{
die "Really die" unless($@->isa('MyEx'));
}
}
print "OK\n";
</code></pre>
<p>If you put that in <code>somefile.pl</code> and run it, it prints "OK" as expected. If you run it in the debugger with <code>perl -d somefile.pl</code>, it dies with this error:</p>
<pre><code>Can't call method "isa" without a package or object reference ...
</code></pre>
<p>The upshot is that <code>$@</code> is not an object when the code runs under the debugger. Instead, it's an unblessed scalar containing this string:</p>
<pre><code>" at somefile.pl line 9
eval {...} called at somefile.pl line 9
main::BEGIN() called at somefile.pl line 16
eval {...} called at somefile.pl line 16
"
</code></pre>
<p>(Internal newlines and spacing preserved. That's the literal text, even the "..."s.)</p>
<p>I need code like this to run in the debugger. Using the debugger in the test suite is an important part of my workflow. The module uses exception objects and does a lot of stuff at compile time and expects an object thrown to be an object when caught.</p>
<p>My question (finally) is this: How can I get this to work? Is there a workaround? Is this a bug in the perl debugger module? What's the best way to go about getting this resolved? (I know that's several questions, but they're all related.)</p>
<p>I'm using perl 5.10.0 on Mac OS X 10.5.5.</p>
<p><hr /></p>
<p>The dieLevel thing suggested by Adam Bellaire looked promising, and indeed something (can't find out what) is setting it to 1 for me. But I set it to 0 using a <code>~/.perldb</code> file and the problem persists. In fact, I set all three of the related settings to 0. My <code>~/.perldb</code> file:</p>
<pre><code>parse_options('dieLevel=0 warnLevel=0 signalLevel=0');
</code></pre>
<p>I confirmed that the settings are in effect by running the <code>o</code> command in the debugger. I see them all set to 0 when I run <code>perl -de 0</code> and also when running the actual <code>somefile.pl</code> file.</p>
<p><hr /></p>
<p>Thanks, brian. I used <code>perlbug</code> to file a bug (<a href="http://rt.perl.org/rt3/Ticket/Display.html?id=60890" rel="nofollow">RT 60890</a>) and I've begun to sprinkle <code>local $SIG{'__DIE__'}</code> in all the appropriate places in my code. (I also noted in the bug that <code>perldoc perldebug</code> still seems to imply that the default <code>dieLevel</code> is 0.)</p>
http://stackoverflow.com/questions/1390082/in-perl-are-there-disadvantages-to-generating-getters-and-setters-rather-than-har/1390525#13905257Answer by John Siracusa for In Perl are there disadvantages to generating getters and setters rather than hard-coding them?John Siracusa2009-09-07T18:37:10Z2009-09-07T21:30:15Z<p>There should be no difference in runtime performance <em>if</em> the resulting code is the same in both cases. This is usually not possible, however, unless you use string <code>eval</code> to create your subroutines. For example, the code you provided:</p>
<pre><code>... = sub { $_[0]->{$a} };
</code></pre>
<p>will be ever-so-slightly slower than the code you would have written manually:</p>
<pre><code>sub foo { $_[0]->{'foo'} }
</code></pre>
<p>simply because the former has to get the value of the variable $a before using it as a key to the hash, whereas the later uses a constant as its hash key. Also, as an aside, <code>shift</code> usually tends to be faster than <code>$_[0]</code>. Here's some benchmark code:</p>
<pre><code>use Benchmark qw(cmpthese);
package Foo;
sub manual_shift { shift->{'foo'} }
sub manual_index { $_[0]->{'foo'} }
my $attr = 'foo';
*dynamic_shift = sub { shift->{$attr} };
*dynamic_index = sub { $_[0]->{$attr} };
package main;
my $o = bless { foo => 123 }, 'Foo';
cmpthese(-2, {
manual_shift => sub { my $a = $o->manual_shift },
manual_index => sub { my $a = $o->manual_index },
dynamic_shift => sub { my $a = $o->dynamic_shift },
dynamic_index => sub { my $a = $o->dynamic_index },
});
</code></pre>
<p>and the results on my system:</p>
<pre><code> Rate dynamic_index manual_index dynamic_shift manual_shift
dynamic_index 1799024/s -- -3% -4% -7%
manual_index 1853616/s 3% -- -1% -4%
dynamic_shift 1873183/s 4% 1% -- -3%
manual_shift 1937019/s 8% 4% 3% --
</code></pre>
<p>They're so close that differences may get lost in the noise, but over many trials I think you'll see that the "manual shift" variant is the fastest. But as with all microbenchmarks like this, you have to test your exact scenario on your hardware and your version of perl to be sure of anything.</p>
<p>And here's string eval thrown into the mix.</p>
<pre><code>eval "sub eval_index { \$_[0]->{'$attr'} }";
eval "sub eval_shift { shift->{'$attr'} }";
</code></pre>
<p>It should be exactly the same as the "manual" variants, plus or minus the statistical noise. My results:</p>
<pre><code> Rate dynamic_index manual_index dynamic_shift manual_shift eval_shift eval_index
dynamic_index 1820444/s -- -1% -2% -3% -4% -5%
manual_index 1835005/s 1% -- -1% -2% -3% -4%
dynamic_shift 1858131/s 2% 1% -- -1% -2% -3%
manual_shift 1876708/s 3% 2% 1% -- -1% -2%
eval_shift 1894132/s 4% 3% 2% 1% -- -1%
eval_index 1914060/s 5% 4% 3% 2% 1% --
</code></pre>
<p>Again, these are all so close that you'd have to take great pains and perform many trials to sort out the signal from the noise. But the difference between using a constant as a hash key and using a variable (whose value must first be retrieved) as a hash key should show through. (The <code>shift</code> optimization is a separate issue and is more likely to change one way or the other in past or future versions of perl.)</p>
http://stackoverflow.com/questions/871324/how-to-remember-a-match-and-its-position-in-an-array-in-perl/871346#8713462Answer by John Siracusa for How to Remember a match and its position in an array in perl?John Siracusa2009-05-16T00:26:12Z2009-09-02T21:56:58Z<p>The <a href="http://perldoc.perl.org/functions/pos.html" rel="nofollow"><code>pos()</code></a> function can be used to report the (ending) position of a match. Example:</p>
<pre><code>my $string = 'abcdefghijk';
if($string =~ /e/g)
{
print "There is an 'e' ending at position ", pos($string), ".\n";
}
</code></pre>
<p>This code will print, "There is an 'e' ending at position 5." (Positions start from 0.) Combine this with the normal use of capturing parentheses and you should be able to solve your problem.</p>
<p>In addition to <a href="http://perldoc.perl.org/functions/pos.html" rel="nofollow"><code>pos()</code></a>, there are also the special global arrays <a href="http://perldoc.perl.org/perlvar.html#%40-" rel="nofollow"><code>@-</code></a> and <a href="http://perldoc.perl.org/perlvar.html#%40+" rel="nofollow"><code>@+</code></a> which provide the start and end offsets of each subpattern matched. Example:</p>
<pre><code>my $string = 'foo bar baz';
if($string =~ /(foo) (bar) (baz)/)
{
print "The whole match is between $-[0] and $+[0].\n",
"The first match is between $-[1] and $+[1].\n",
"The second match is between $-[2] and $+[2].\n",
"The third match is between $-[3] and $+[3].\n";
}
</code></pre>
<p>( <em>Thanks to Chas. Owens for jogging my memory on these; I was looking in <a href="http://perldoc.perl.org/perlre.html" rel="nofollow"><code>perlre</code></a> for them instead of in <a href="http://perldoc.perl.org/perlvar.html" rel="nofollow"><code>perlvar</code></a></em> )</p>
http://stackoverflow.com/questions/1323013/what-are-the-chances-that-two-messages-have-the-same-md5-digest-and-the-same-sha19What are the chances that two messages have the same MD5 digest and the same SHA1 digest?John Siracusa2009-08-24T15:17:36Z2009-08-26T19:15:50Z
<p>Given two different messages, A and B (maybe 20-80 characters of text, if size matters at all), what is the probability that the MD5 digest of A is the same as the MD5 digest of B <em>and</em> the SHA1 digest of A is the same as the SHA1 digest of B? That is:</p>
<pre><code>(MD5(A) == MD5(B)) && (SHA1(A) == SHA1(B))
</code></pre>
<p>Assume no malicious intent, i.e., that the messages are not selected with an aim of finding a clash. I just want to know the odds of this happening naturally.</p>
<p>I'm thinking the chances are "astronomically low," but I'm not sure how to verify this.</p>
<p>More information: the size of the pool of possible messages is restricted, but large (several hundred million). Birthday paradox situations are exactly what I'm worried about.</p>
http://stackoverflow.com/questions/1328411/is-shift-evil-for-processing-perl-subroutine-parameters/1328424#132842433Answer by John Siracusa for Is 'shift' evil for processing Perl subroutine parameters?John Siracusa2009-08-25T13:54:03Z2009-08-25T16:09:21Z<p>The use of <code>shift</code> to unpack arguments is not evil. It's a common convention and may be the fastest way to process arguments (depending on how many there are and how they're passed). Here's one example of a somewhat common scenario where that's the case: a simple accessor.</p>
<pre><code>use Benchmark qw(cmpthese);
sub Foo::x_shift { shift->{'a'} }
sub Foo::x_ref { $_[0]->{'a'} }
sub Foo::x_copy { my $s = $_[0]; $s->{'a'} }
our $o = bless {a => 123}, 'Foo';
cmpthese(-2, { x_shift => sub { $o->x_shift },
x_ref => sub { $o->x_ref },
x_copy => sub { $o->x_copy }, });
</code></pre>
<p>The results on perl 5.8.8 on my machine:</p>
<pre><code> Rate x_copy x_ref x_shift
x_copy 772761/s -- -12% -19%
x_ref 877709/s 14% -- -8%
x_shift 949792/s 23% 8% --
</code></pre>
<p>Not dramatic, but there it is. Always test your scenario on your version of perl on your target hardware to find out for sure.</p>
<p><code>shift</code> is also useful in cases where you want to shift off the invocant and then call a <code>SUPER::</code> method, passing the remaining <code>@_</code> as-is.</p>
<pre><code>sub my_method
{
my $self = shift;
...
return $self->SUPER::my_method(@_);
}
</code></pre>
<p>If I had a very long series of <code>my $foo = shift;</code> operations at the top of a function, however, I might consider using a mass copy from <code>@_</code> instead. But in general, if you have a function or method that takes more than a handful of arguments, using named parameters (i.e., catching all of <code>@_</code> in a <code>%args</code> hash or expecting a single hash reference argument) is a much better approach.</p>
http://stackoverflow.com/questions/1237504/is-my-rosedbobject-compile-time-too-slow/1238904#12389044Answer by John Siracusa for Is my Rose::DB::Object compile-time too slow?John Siracusa2009-08-06T13:30:25Z2009-08-07T13:55:20Z<p><a href="http://search.cpan.org/dist/Rose-DB-Object/" rel="nofollow">Rose::DB::Object</a> simply contains (or references from other modules) much more code than <a href="http://search.cpan.org/dist/Class-DBI/" rel="nofollow">Class::DBI</a>. On the bright side, it also has <a href="http://search.cpan.org/dist/Rose-DB-Object/lib/Rose/DB/Object/Tutorial.pod" rel="nofollow">many more features</a> and is <a href="http://code.google.com/p/rose/wiki/RDBOBenchmarks" rel="nofollow">much faster at runtime</a> than Class::DBI. If compile time is concern for you, then your best bet is to load as little code as possible (or get faster disks).</p>
<p>Another option is to set <a href="http://search.cpan.org/dist/Rose-DB-Object/lib/Rose/DB/Object/Metadata.pm#auto_load_related_classes" rel="nofollow"><code>auto_load_related_classes</code></a> to false in your Metadata objects. To do this early enough and globally will probably require you to make a <a href="http://search.cpan.org/dist/Rose-DB-Object/lib/Rose/DB/Object/Metadata.pm" rel="nofollow">Metadata</a> subclass and then set that as the <a href="http://search.cpan.org/dist/Rose-DB-Object/lib/Rose/DB/Object.pm#meta_class" rel="nofollow"><code>meta_class</code></a> in your common <a href="http://search.cpan.org/dist/Rose-DB-Object/lib/Rose/DB/Object.pm" rel="nofollow">Rose::DB::Object</a> base class.</p>
<p>Turning <code>auto_load_related_classes</code> off means that you'd have to manually load related classes that you actually want to use in your script. That's a bit of a pain, but it lets you control how many classes get loaded. (If you have heavily interrelated classes, loading a single one can end up pulling all the other ones in.)</p>
<p>You could, perhaps, have an environment variable to control the behavior. Example metadata class:</p>
<pre><code>package My::DB::Object::Metadata;
use base 'Rose::DB::Object::Metadata';
# New class method to handle default
sub default_auto_load_related_classes
{
return $ENV{'RDBO_AUTO_LOAD_RELATED_CLASSES'} ? 1 : 0
}
# Override existing object method, honoring new class-defined default
sub auto_load_related_classes
{
my($self) = shift;
return $self->SUPER::auto_load_related_classes(@_) if(@_);
if(defined(my $value = $self->SUPER::auto_load_related_classes))
{
return $value;
}
# Initialize to default
return $self->SUPER::auto_load_related_classes(ref($self)->default_auto_load_related_classes);
}
</code></pre>
<p>And here's how it's tied to your common object base class:</p>
<pre><code>package My::DB::Object;
use base 'Rose::DB::Object';
use My::DB::Object::Metadata;
sub meta_class { 'My::DB::Object::Metadata' }
</code></pre>
<p>Then set <code>RDBO_AUTO_LOAD_RELATED_CLASSES</code> to true when you're running in a persistent environment, and leave it false (and don't forget to explicitly load related classes) for command-line scripts.</p>
<p>Again, this will only help if you're currently loading more classes than you strictly need in a particular script due to the default true value of the <code>auto_load_related_classes</code> Metadata attribute.</p>
http://stackoverflow.com/questions/1198778/why-isnt-rosedbobject-sortby-rand-doing-what-i-expect/1199892#11998923Answer by John Siracusa for Why isn't Rose::DB::Object sort_by RAND() doing what I expect?John Siracusa2009-07-29T12:28:18Z2009-07-29T13:19:35Z<p>From the <a href="http://search.cpan.org/dist/Rose-DB-Object/lib/Rose/DB/Object/Manager.pm#sort_by" rel="nofollow">documentation for the <code>sort_by</code> parameter</a>:</p>
<blockquote>If selecting sub-objects (via require_objects or with_objects) that are related through "one to many" or "many to many" relationships, the first condition in the sort order clause must be a column in the primary table (t1). If this condition is not met, the list of primary key columns will be added to the beginning of the sort order clause automatically.</blockquote>
<p>This is required in order to correctly associate sub-objects with their parent objects.</p>
<p>If you'd like to override this behavior, you can use the (as-yet undocumented) <code>no_forced_sort</code> boolean parameter.</p>
<pre><code>my $user_questions =
RoseDB::UserSecurityQuestion::Manager->get_user_security_questions(
...
sort_by => 'RAND()',
no_forced_sort => 1);
</code></pre>
<p>But <b>it is highly likely that this will cause sub-objects to be associated with the incorrect parent objects</b>. What you'll need to make this work is a sort that is deterministically based on a unique characteristic of t1, but is otherwise random. That is, <code>somefunc(t1.id)</code> would be random but would always return the same result for a given value of t1.id, keeping all the children with the correct parents.</p>
<p>An obvious (and probably a lot more pragmatic) approach is to fetch all security questions for the user <code>$username</code> and then just randomly pick two:</p>
<pre><code>my $user_questions =
RoseDB::UserSecurityQuestion::Manager->get_user_security_questions(
query => [ 'user.username' => $username ],
with_objects => ['User','SecurityQuestion']);
use constant NUM_RANDOM_QUESTIONS => 2;
my @questions;
for(1 .. NUM_RANDOM_QUESTIONS)
{
last unless(@$user_questions);
push(@questions, splice(@$user_questions, int(rand(@$user_questions)), 1));
}
</code></pre>
<p>Now you've got your (maximum) <code>NUM_RANDOM_QUESTIONS</code> randomly selected questions in <code>@questions</code>.</p>
http://stackoverflow.com/questions/3033/whats-the-safest-way-to-iterate-through-the-keys-of-a-perl-hash/3360#336024Answer by John Siracusa for What's the safest way to iterate through the keys of a Perl hash?John Siracusa2008-08-06T13:22:14Z2009-06-04T07:05:59Z<p>The rule of thumb is to use the function most suited to your needs.</p>
<p>If you just want the keys and do not plan to ever <em>read</em> any of the values, use keys():</p>
<pre><code>foreach my $key (keys %hash) { ... }
</code></pre>
<p>If you just want the values, use values():</p>
<pre><code>foreach my $val (values %hash) { ... }
</code></pre>
<p>If you need the keys <em>and</em> the values, use each():</p>
<pre><code>keys %hash; # reset the internal iterator so a prior each() doesn't affect the loop
while(my($k, $v) = each %hash) { ... }
</code></pre>
<p>If you plan to change the keys of the hash in any way <em>except</em> for deleting the current key during the iteration, then you must not use each(). For example, this code to create a new set of uppercase keys with doubled values works fine using keys():</p>
<pre><code>%h = (a => 1, b => 2);
foreach my $k (keys %h)
{
$h{uc $k} = $h{$k} * 2;
}
</code></pre>
<p>producing the expected resulting hash:</p>
<pre><code>(a => 1, A => 2, b => 2, B => 4)
</code></pre>
<p>But using each() to do the same thing:</p>
<pre><code>%h = (a => 1, b => 2);
keys %h;
while(my($k, $v) = each %h)
{
$h{uc $k} = $h{$k} * 2; # BAD IDEA!
}
</code></pre>
<p>produces incorrect results in hard-to-predict ways. For example:</p>
<pre><code>(a => 1, A => 2, b => 2, B => 8)
</code></pre>
<p>This, however, is safe:</p>
<pre><code>keys %h;
while(my($k, $v) = each %h)
{
if(...)
{
delete $h{$k}; # This is safe
}
}
</code></pre>
<p>All of this is described in the perl documentation:</p>
<pre><code>% perldoc -f keys
% perldoc -f each
</code></pre>
http://stackoverflow.com/questions/945584/is-it-possible-to-execute-multiple-statements-in-a-single-query-using-dbdoracle0Is it possible to execute multiple statements in a single query using DBD::Oracle?John Siracusa2009-06-03T16:04:54Z2009-06-03T17:06:59Z
<p>I'd like to know if it's possible to execute more than one SQL statement within a single <a href="http://search.cpan.org/dist/DBI#execute" rel="nofollow"><code>execute()</code></a> or <a href="http://search.cpan.org/dist/DBI#do" rel="nofollow"><code>do()</code></a> call using <a href="http://search.cpan.org/dist/DBD-Oracle" rel="nofollow"><code>DBD::Oracle</code></a> via Perl <a href="http://search.cpan.org/dist/DBI" rel="nofollow"><code>DBI</code></a>. Example:</p>
<pre><code># Multiple SQL statements in a single query, separated by a ";"
$sql = 'UPDATE foo SET bar = 123; DELETE FROM foo WHERE baz = 456';
$sth = $dbh->prepare($sql);
$sth->execute;
# ...or...
$dbh->do($sql);
</code></pre>
<p>I ask this not because I want to actually do such a thing, but rather because I want to gauge the damage possible through a successful SQL injection attack. And yes, I know that, regardless of the answer to this question, the possibility of SQL injection must still be eliminated at its root using bind values and trusted input only, etc. But the question still stands: is it possible to make <code>DBD::Oracle</code> execute multiple statements?</p>
<p>As a related example, <a href="http://search.cpan.org/dist/DBD-mysql/" rel="nofollow"><code>DBD::mysql</code></a> has a <a href="http://search.cpan.org/dist/DBD-mysql/lib/DBD/mysql.pm#mysql_multi_statements" rel="nofollow"><code>mysql_multi_statements</code></a> connection option that explicitly enables this "feature." I can't shake the feeling that there's some similar, perhaps undocumented and obscure Oracle OCI option that's accessible somehow via <code>DBD::Oracle</code> that will enable the same thing.</p>
<p>In case it matters, this is:</p>
<ul>
<li><code>perl</code> 5.8.8</li>
<li><code>DBD::Oracle</code> 1.22</li>
<li>Oracle 11g (11.01.0700)</li>
</ul>
http://stackoverflow.com/questions/863326/what-is-the-correct-directory-layout-for-a-web-server-under-mac-os-x/863979#8639791Answer by John Siracusa for What is the correct directory layout for a web server under Mac OS X?John Siracusa2009-05-14T15:20:06Z2009-05-14T15:20:06Z<p>Do not install it directly in <code>/usr</code>. That's Apple's domain. Though <code>/opt</code> might be okay, it will not be in the default path and is not commonly used as a default installation location for third-party Unix software in Mac OS X.</p>
<p>My advice is to install everything under <code>/usr/local</code>. Apple will not touch this area (e.g., during system updates, etc.), <code>/usr/local/bin</code> should be in the default path for users, and I have observed many other Mac OS X server software packages using this location.</p>
<p>Most Mac OS X packages I've used (and most software I've built from source on Mac OS X) will create a <code>/usr/local/whatever/...</code> containing directory, however. So, for example, all of MySQL would be under <code>/usr/local/mysql/...</code> That means the MySQL binaries are in <code>/usr/local/mysql/bin/...</code> which is <em>not</em> in the default path for users. But I think the improved isolation of that extra level of directory structure is worth this sacrifice. (Another option is to install everything under <code>/usr/local/whatever/...</code> but then add symlinks to your most important executable(s) under <code>/usr/local/bin</code>)</p>
http://stackoverflow.com/questions/859359/perlpostgresql-a-function-does-not-return-a-value-if-raise-notice-is-present/861493#8614932Answer by John Siracusa for Perl+Postgresql: a function does not return a value if RAISE NOTICE is presentJohn Siracusa2009-05-14T04:04:43Z2009-05-14T04:04:43Z<p>Check the <a href="http://www.postgresql.org/docs/8.3/static/runtime-config-logging.html#GUC-CLIENT-MIN-MESSAGES" rel="nofollow"><code>client_min_messages</code></a> setting in your database server's <code>postgresql.conf</code> file. From the PostgreSQL 8.3 docs:</p>
<blockquote>
<p><code>client_min_messages</code> (string)</p>
<blockquote>
<p>Controls which message levels are sent to the client. Valid values are <code>DEBUG5</code>, <code>DEBUG4</code>, <code>DEBUG3</code>, <code>DEBUG2</code>, <code>DEBUG1</code>, <code>LOG</code>, <code>NOTICE</code>, <code>WARNING</code>, <code>ERROR</code>, <code>FATAL</code>, and PANIC. Each level includes all the levels that follow it. The later the level, the fewer messages are sent. The default is <code>NOTICE</code>. Note that <code>LOG</code> has a different rank here than in <code>log_min_messages</code>. </p>
</blockquote>
</blockquote>
http://stackoverflow.com/questions/855139/how-can-i-get-a-row-count-in-dbi-without-running-two-separate-calls-to-process/855869#8558697Answer by John Siracusa for how can I get a row count in DBI without running two separate calls to process?John Siracusa2009-05-13T03:05:33Z2009-05-13T03:05:33Z<p>The <a href="http://search.cpan.org/dist/DBI/DBI.pm#rows" rel="nofollow">"caveat" in the documentation</a> (linked to in a comment on another answer) is important, and provides the real, correct answer:</p>
<blockquote>
<p>Generally, you can only rely on a row count after a <em>non</em>-SELECT execute (for some specific operations like UPDATE and DELETE), or after fetching all the rows of a SELECT statement.</p>
<p>For SELECT statements, it is generally not possible to know how many rows will be returned except by fetching them all. Some drivers will return the number of rows the application has fetched so far, but others may return -1 until all rows have been fetched. So use of the rows method or $DBI::rows with SELECT statements is not recommended.</p>
</blockquote>
http://stackoverflow.com/questions/834712/perl-dbi-and-dbdinformix-error/834900#8349003Answer by John Siracusa for Perl, DBI and DBD::Informix errorJohn Siracusa2009-05-07T14:16:26Z2009-05-07T14:26:28Z<p>There are no results for you to fetch from the statement you are executing:</p>
<pre><code>set isolation to dirty read
</code></pre>
<p>so <code>selectrow_array()</code> is the wrong method to call. Use <a href="http://search.cpan.org/dist/DBI/DBI.pm#do" rel="nofollow">$dbh->do(...)</a> instead:</p>
<pre><code>$db_handle->do('set isolation to dirty read');
</code></pre>
<p>Here's a longer explanation of the -400 error:</p>
<blockquote>
<p>-400 Fetch attempted on unopen cursor.</p>
This FETCH statement names a cursor that has never been opened or has
been closed. Review the program logic, and check that it will open the
cursor before this point and not accidentally close it. Unless a cursor
is declared WITH HOLD, it is automatically closed by a COMMIT WORK or
ROLLBACK WORK statement.
</blockquote>
<p>As Jonathan points out, this may not be the clearest error, but it does make some sense once you understand what's going on.</p>
http://stackoverflow.com/questions/821423/how-can-i-calculate-the-number-of-days-between-two-dates-in-perl/822039#8220393Answer by John Siracusa for How can I calculate the number of days between two dates in Perl?John Siracusa2009-05-04T20:57:23Z2009-05-05T04:05:57Z<p>If you care about accuracy, keep in mind that not all days have 86400 seconds. Any solution based on that assumption will not be correct for some cases.</p>
<p>Here's a snippet I keep around to calculate and display date/time differences a few different ways using the <a href="http://search.cpan.org/dist/DateTime/" rel="nofollow">DateTime</a> library. The last answer printed is the one you want, I think.</p>
<pre><code>#!/usr/bin/perl -w
use strict;
use DateTime;
use DateTime::Format::Duration;
# XXX: Create your two dates here
my $d1 = DateTime->new(...);
my $d2 = DateTime->new(...);
my $dur = $d1 > $d2 ? ($d1 - $d2) : ($d2 - $d1);
my $dur_abs = $d1 > $d2 ?
$d1->subtract_datetime_absolute($d2) :
$d2->subtract_datetime_absolute($d1);
my $fmt = DateTime::Format::Duration->new(pattern =>
'%Y years, %m months, %e days, %H hours, %M minutes, %S seconds');
print $fmt->format_duration($dur), "\n";
$dur = $d1->delta_md($d2);
my $dy = int($dur->delta_months / 12);
my $dm = $dur->delta_months % 12;
print "$dy years $dm months ", $dur->delta_days, " days\n";
print $dur->delta_months, " months ", $dur->delta_days, " days\n";
print $d1->delta_days($d2)->delta_days, " days\n";
</code></pre>
http://stackoverflow.com/questions/802107/how-do-i-check-whether-a-perl-module-is-installed/802120#8021208Answer by John Siracusa for How do I check whether a Perl module is installed?John Siracusa2009-04-29T12:26:44Z2009-04-29T12:26:44Z<p>Check out the answers to this earlier question: <a href="http://stackoverflow.com/questions/251694">How can I check if I have a Perl module before using it?</a></p>
http://stackoverflow.com/questions/723435/can-i-create-a-table-if-not-exists-from-rosedbobject-metadata/723928#7239284Answer by John Siracusa for Can I create a table (if not exists) from Rose::DB::Object metadata?John Siracusa2009-04-07T02:01:50Z2009-04-07T02:01:50Z<p>While it is possible to create a <a href="http://search.cpan.org/dist/Rose-DB-Object/" rel="nofollow">Rose::DB::Object</a> class (as a <code>.pm</code> file on disk or just in memory) from an existing SQL schema using <a href="http://search.cpan.org/dist/Rose-DB-Object/lib/Rose/DB/Object/Loader.pm" rel="nofollow">Rose::DB::Object::Loader</a>, there is currently no built-in way to do the reverse: generate an SQL table definition from a <a href="http://search.cpan.org/dist/Rose-DB-Object/" rel="nofollow">Rose::DB::Object</a> class definition.</p>
<p>To do such a thing, I suggest looking into using <a href="http://search.cpan.org/dist/SQL-Translator/" rel="nofollow">SQL::Translator</a>. All of the <a href="http://search.cpan.org/dist/Rose-DB-Object/lib/Rose/DB/Object/Metadata.pm" rel="nofollow">Rose::DB::Object metadata</a> is readily available. It'd just be a matter of adapting it to suit <code>SQL::Translator</code>'s requirements. If you'd like more guidance or some help doing this, I suggest asking around on the <a href="http://groups.google.com/group/rose-db-object" rel="nofollow">RDBO mailing list</a>.</p>
http://stackoverflow.com/questions/524308/how-can-i-call-methods-on-a-tied-variable/524449#5244498Answer by John Siracusa for How can I call methods on a tied variable?John Siracusa2009-02-07T19:49:58Z2009-02-08T01:20:11Z<p>I suggest making a normal Perl object and then <a href="http://perldoc.perl.org/overload.html" rel="nofollow">overload</a>ing stringification. You lose the ability to store a value through assignment, but retain the ability to get the value out by printing the object. Once you start wanting to call methods directly, an object is probably what you want.</p>
<pre><code>package Link;
use strict;
use Carp;
use overload
(
'""' => sub { shift->site },
fallback => 1,
);
sub new
{
my $class = shift;
my $self = bless {}, $class;
if(@_)
{
if(@_ == 1)
{
$self->{'site'} = shift;
}
else { croak "$class->new() expects a single URL argument" }
}
return $self;
}
sub site
{
my $self = shift;
$self->{'site'} = shift if(@_);
return $self->{'site'};
}
sub print_method
{
my $self = shift;
print $self->site, "\n";
}
1;
</code></pre>
<p>Example usage:</p>
<pre><code>use Link;
my $link = Link->new('http://somesite.com');
print $link, "\n"; # http://somesite.com
$link->print_method; # http://somesite.com
</code></pre>
<p>If you really, really want assignment to work too, you can combine a normal object with overloaded stringification (<code>Link</code>, above) with <code>tie</code>:</p>
<pre><code>package LinkTie;
use strict;
use Link;
sub FETCH
{
my $this = shift;
return $this->{'link'};
}
sub STORE
{
my($self, $site) = @_;
$self->{'link'}->site($site);
return $site;
}
# XXX: You could generalize this delegation with Class::Delegation or similar
sub print_method
{
my $self = shift;
print $self->{'link'}->print_method;
}
sub TIESCALAR
{
my $class = shift;
my $self = bless {}, $class;
$self->{'link'} = Link->new(@_);
return $self;
}
1;
</code></pre>
<p>Example usage:</p>
<pre><code>tie my $link,'LinkTie','http://somesite.com';
print $link, "\n"; # http://somesite.com
$link->print_method; # http://somesite.com
$link = 'http://othersite.com';
print $link, "\n"; # http://othersite.com
$link->print_method; # http://othersite.com
</code></pre>
<p>This is all quite hideous and a long way to go just to get the dubious ability to assign to something that you can also call methods on and also print as-is. A standard URI object with stringification is probably a better bet.</p>
http://stackoverflow.com/questions/510139/how-can-i-do-an-update-in-classdbi-without-selecting-a-record-first/511418#5114186Answer by John Siracusa for How can I do an update in Class::DBI without selecting a record first?John Siracusa2009-02-04T13:43:39Z2009-02-04T13:58:41Z<p>As far as I know, Class::DBI does not have a good way to do this, As you've noted, its <code>update()</code> method is meant to be called on an object that has been previously loaded from the database.</p>
<p>You may be able to convince Class::DBI to do what you want, however, with something like this:</p>
<pre><code># Make new "empty" object
my $o = My::CDBI::Object->new;
# Set the primary key column and discard the change
$o->set(your_pk_column => 123);
$o->discard_changes;
# Set your other columns
$o->set(a => 'foo', b => 'bar');
# Do the update
$o->update;
</code></pre>
<p>If this feature is important to you and you're not already too far into your project, you will definitely have better luck with one of the newer Perl ORMs such as <a href="http://www.perlfoundation.org/perl5/index.cgi?rose_db_object" rel="nofollow">Rose::DB::Object</a> or <a href="http://www.perlfoundation.org/perl5/index.cgi?dbix_class" rel="nofollow">DBIx::Class</a>. DBIx::Class even includes <a href="http://search.cpan.org/dist/DBIx-Class/lib/DBIx/Class/CDBICompat.pm" rel="nofollow">a Class::DBI compatibility layer</a>.</p>
http://stackoverflow.com/questions/449690/how-can-i-monkey-patch-an-instance-method-in-perl/451281#4512812Answer by John Siracusa for How can I monkey-patch an instance method in Perl?John Siracusa2009-01-16T17:25:45Z2009-01-17T04:58:15Z<p>If dynamic scope (using <code>local</code>) isn't satisfactory, you can automate the custom package reblessing technique:</p>
<pre><code>MONKEY_PATCH_INSTANCE:
{
my $counter = 1; # could use a state var in perl 5.10
sub monkey_patch_instance
{
my($instance, $method, $code) = @_;
my $package = ref($instance) . '::MonkeyPatch' . $counter++;
no strict 'refs';
@{$package . '::ISA'} = (ref($instance));
*{$package . '::' . $method} = $code;
bless $_[0], $package; # sneaky re-bless of aliased argument
}
}
</code></pre>
<p>Example usage:</p>
<pre><code>package Dog;
sub new { bless {}, shift }
sub speak { print "woof!\n" }
...
package main;
my $dog1 = Dog->new;
my $dog2 = Dog->new;
monkey_patch_instance($dog2, speak => sub { print "yap!\n" });
$dog1->speak; # woof!
$dog2->speak; # yap!
</code></pre>
http://stackoverflow.com/questions/401556/are-quotes-around-hash-keys-a-good-practice-in-perl/402101#4021018Answer by John Siracusa for Are quotes around hash keys a good practice in Perl?John Siracusa2008-12-31T02:11:27Z2008-12-31T13:28:13Z<p>When specifying constant string hash keys, you should always use (single) quotes. E.g., <code>$hash{'key'}</code> This is the best choice because it obviates the need to think about this issue and results in consistent formatting. If you leave off the quotes sometimes, you have to remember to add them when your key contains internal hypens, spaces, or other special characters. You <em>must</em> use quotes in those cases, leading to inconsistent formatting (sometimes unquoted, sometimes quoted). Quoted keys are also more likely to be syntax-highlighted by your editor.</p>
http://stackoverflow.com/questions/393627/how-can-i-quickly-find-the-users-terminal-pid-in-perl/393796#3937964Answer by John Siracusa for How can I quickly find the user's terminal PID in Perl?John Siracusa2008-12-26T13:58:06Z2008-12-26T13:58:06Z<p>I think you'll get the best performance improvement by avoiding the overhead of repeatedly executing an external command (<code>ptree</code>, in this case). I'd look for a CPAN module that provides a direct interface to the data structures that <code>ptree</code> is reading. Check the <a href="http://search.cpan.org/search?query=Linux%3A%3A&mode=all" rel="nofollow">Linux::</a> namespace, maybe? (I'm not sure if <code>ptree</code> is <a href="http://en.wikipedia.org/wiki/Setuid" rel="nofollow">setuid</a>; that may complicate things.)</p>
<p>The above advice aside, some additional style and robustness notes based on the posted snippet only (forgive me if the larger code invalidates them):</p>
<ul>
<li><p>I'd start by using <code>strict</code>, at the very least. <a href="http://stackoverflow.com/questions/318789">Lexical filehandles</a> would also be a good idea.</p></li>
<li><p>You appear to be silently ignoring the case when you cannot <code>open()</code> the <code>ptree</code> command. That could happen for many reasons, some of which I can't imagine you wanting to ignore, such as…</p></li>
<li><p>You're not using the full path to the <code>ptree</code> command, but rather assuming it's in your path—and that the one in your path is the right one.</p></li>
</ul>
http://stackoverflow.com/questions/296134/why-does-this-leak/296396#29639610Answer by John Siracusa for Why does this leak?John Siracusa2008-11-17T18:21:18Z2008-11-17T19:46:09Z<p>It doesn't. Put it in a loop and see for yourself: process memory does not increase with each loop iteration.</p>
<pre><code>for(1 .. 10_000_000)
{
our @a = (1);
our @b = (1);
}
</code></pre>
<p>All that "leak" message is (probably) telling you is that the program exited with outstanding variables. To silence that message, undef the variables before the end of the program:</p>
<pre><code>perl -MDevel::LeakTrace::Fast -e 'our @a = (1); our @b = (1); undef @a; undef @b;'
</code></pre>
<p>FWIW, the same message is printed under perl 5.10.0, so I'm not sure upgrading perl is the answer.</p>
<p>As for why the message appears in some cases but not in others, it's probably a vagary of Devel::LeakTrace::Fast. Many Perl leak detection modules have "idiosyncrasies" (putting it kindly) like this.</p>
<p>Bottom line: the only 100% reliable way to test for a leak is to see if memory usage increases with repeated execution of the code in question. When in doubt, fall back to that.</p>
<p>The various Devel::* modules can help, however. But first it's best to isolate the leaking code: disable half your code and see if the leak persists. Now you have narrowed your search by half. Repeat a few times and you'll quickly get down to the function or statement(s) that leak. Then see if that code still leaks when put in a separate script. Finally, to see why it's leaking, employ the Devel:: modules (e.g., checking for memory cycles with <a href="http://search.cpan.org/dist/Devel-Cycle/" rel="nofollow">Devel::Cycle</a>).</p>
http://stackoverflow.com/questions/251694/how-can-i-check-if-i-have-a-perl-module-before-using-it/251786#25178624Answer by John Siracusa for How can I check if I have a Perl module before using it?John Siracusa2008-10-30T21:07:56Z2008-10-30T21:14:46Z<p>Here's a bare-bones solution that does not require another module:</p>
<pre><code>eval
{
require Term::ReadKey;
Term::ReadKey->import();
};
unless($@)
{
# Term::ReadKey loaded and imported successfully
...
}
</code></pre>
<p>Note that all the answers below (I hope they're below this one! :-) that use <code>eval { use SomeModule }</code> are wrong because <code>use</code> statements are evaluated at compile time, regardless of where in the code they appear. So if <code>SomeModule</code> is not available, the script will die immediately upon compiling.</p>
<p>(A string eval of a <code>use</code> statement will also work (<code>eval 'use SomeModule';</code>), but there's no sense parsing and compiling new code at runtime when the <code>require</code>/<code>import</code> pair does the same thing, and is syntax-checked at compile time to boot.)</p>
http://stackoverflow.com/questions/229206/how-do-i-cleanly-extract-mysql-enum-values-in-perl/229561#2295619Answer by John Siracusa for How do I cleanly extract MySQL enum values in Perl?John Siracusa2008-10-23T12:40:11Z2008-10-23T12:40:11Z<p>No need to be so heroic. Using a reasonably modern version of <a href="http://search.cpan.org/dist/DBD-mysql/" rel="nofollow">DBD::mysql</a>, the hash returned by <a href="http://search.cpan.org/dist/DBI/" rel="nofollow">DBI</a>'s <a href="http://search.cpan.org/dist/DBI/DBI.pm#column_info" rel="nofollow">column info</a> method contains a pre-split version of the valid enum values in the key <code>mysql_values</code>:</p>
<pre><code>my $sth = $dbh->column_info(undef, undef, 'mytable', '%');
foreach my $col_info ($sth->fetchrow_hashref)
{
if($col_info->{'TYPE_NAME'} eq 'ENUM')
{
# The mysql_values key contains a reference to an array of valid enum values
print "Valid enum values for $col_info->{'COLUMN_NAME'}: ",
join(', ', @{$col_info->{'mysql_values'}}), "\n";
}
...
}
</code></pre>
http://stackoverflow.com/questions/227976/perl-out-of-place-pattern-substitution/228153#2281532Answer by John Siracusa for Perl out-of-place pattern substitutionJohn Siracusa2008-10-23T01:11:36Z2008-10-23T01:11:36Z<p>This question is <a href="http://stackoverflow.com/questions/22836/replacement-in-a-perl-string-without-modification">a duplicate of this one</a>.</p>
http://stackoverflow.com/questions/34920/how-do-i-lock-a-file-in-perl/182465#1824653Answer by John Siracusa for How do I lock a file in Perl?John Siracusa2008-10-08T12:23:52Z2008-10-08T12:23:52Z<pre><code>use strict;
use Fcntl ':flock'; # Import LOCK_* constants
# We will use this file path in error messages and function calls.
# Don't type it out more than once in your code. Use a variable.
my $file = '/path/to/some/file';
# Open the file for appending. Note the file path is in quoted
# in the error message. This helps debug situations where you
# have a stray space at the start or end of the path.
open(my $fh, '>>', $file) or die "Could not open '$file' - $!";
# Get exclusive lock (will block until it does)
flock($fh, LOCK_EX);
# Do something with the file here...
# Do NOT use flock() to unlock the file if you wrote to the
# file in the "do something" section above. This could create
# a race condition. The close() call below will unlock it
# for you, but only after writing any buffered data.
# In a world of buffered i/o, some or all of your data will not
# be written until close() completes. Always, always, ALWAYS
# check the return value on close()!
close($fh) or die "Could not write '$file' - $!";
</code></pre>
http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/165694#1656946Answer by John Siracusa for What is your latest useful Perl one-liner (or a pipe involving Perl)?John Siracusa2008-10-03T04:31:21Z2008-10-03T04:31:21Z<p>The common idiom of using <code>find ... -exec rm {} \;</code> to delete a set of files somewhere in a directory tree is not particularly efficient in that it executes the <code>rm</code> command once for each file found. One of my habits, born from the days when computers weren't quite as fast (dagnabbit!), is to replace many calls to <code>rm</code> with one call to perl:</p>
<pre><code>find . -name '*.whatever' | perl -lne unlink
</code></pre>
<p>The <code>perl</code> part of the command line reads the list of files emitted* by <code>find</code>, one per line, trims the newline off, and deletes the file using perl's built-in <code>unlink()</code> function, which takes <code>$_</code> as its argument if no explicit argument is supplied. (<code>$_</code> is set to each line of input thanks to the <code>-n</code> flag.) (*These days, most <code>find</code> commands do <code>-print</code> by default, so I can leave that part out.)</p>
<p>I like this idiom not only because of the efficiency (possibly less important these days) but also because it has fewer chorded/awkward keys than typing the traditional <code>-exec rm {} \;</code> sequence. It also avoids quoting issues caused by file names with spaces, quotes, etc., of which I have many. (A more robust version might use <code>find</code>'s <code>-print0</code> option and then ask <code>perl</code> to read null-delimited records instead of lines, but I'm usually pretty confident that my file names do not contain embedded newlines.)</p>
http://stackoverflow.com/questions/161872/hidden-features-of-perl/162058#16205829Answer by John Siracusa for Hidden features of Perl?John Siracusa2008-10-02T12:41:44Z2008-10-02T12:41:44Z<p>The flip-flop operator is useful for skipping the first iteration when looping through the records (usually lines) returned by a file handle, without using a flag variable:</p>
<pre><code>while(<$fh>)
{
next if 1..1; # skip first record
...
}
</code></pre>
<p>Run <code>perldoc perlop</code> and search for "flip-flop" for more information and examples.</p>
http://stackoverflow.com/questions/125171/passing-a-regex-substitution-as-a-variable-in-perl/125266#12526614Answer by John Siracusa for Passing a regex substitution as a variable in Perl?John Siracusa2008-09-24T03:30:35Z2008-09-24T03:30:35Z<blockquote>
<p>I need to pass a regex substitution as a variable</p>
</blockquote>
<p>Do you? Why not pass a code reference? Example:</p>
<pre><code>sub modify
{
my($text, $code) = @_;
$code->($text);
return $text;
}
my $new_text = modify('foo baz', sub { $_[0] =~ s/foo/bar/ });
</code></pre>
<p>In general, when you want to pass "something that does something" to a subroutine ("a regex substitution" in the case of your question) the answer is to pass a reference to a piece of code. <a href="http://hop.perl.plover.com/" rel="nofollow">Higher Order Perl</a> is a good book on the topic.</p>
http://stackoverflow.com/questions/1833554/how-does-the-qr-string-operator-in-perl-decide-whether-or-not-to-compile-string/1833896#1833896Comment by John Siracusa on How does the qr/STRING/ operator in Perl decide whether or not to compile STRING?John Siracusa2009-12-02T17:01:49Z2009-12-02T17:01:49ZAdding a dummy creation and assignment to $vowel still leaves the hoisted version ~190% faster in my testing. I'm sure there's some internal caching in the implementation of qr//, but it seems to be dwarfed by the overhead of actually invoking the qr// operator, which happens every time.http://stackoverflow.com/questions/1833554/how-does-the-qr-string-operator-in-perl-decide-whether-or-not-to-compile-string/1833896#1833896Comment by John Siracusa on How does the qr/STRING/ operator in Perl decide whether or not to compile STRING?John Siracusa2009-12-02T16:50:23Z2009-12-02T16:50:23ZThe qr operator compiles its contents into a regex every time it's encountered. (It does this regardless of the presence of an /o modifier.) Hoisting the $vowel = qr/[aeiou]/ line above the loop roughly doubles the execution speed of you example on my system.http://stackoverflow.com/questions/1665812/how-can-i-use-mysql-bit-from-using-dbixComment by John Siracusa on How can I use mysql bit from using DBIxJohn Siracusa2009-11-03T14:24:33Z2009-11-03T14:24:33ZDo you mean DBIx::Class? DBIx:: is the CPAN namespace used for DBI-related extension modules, so question about "using DBIx" doesn't provide enough information.http://stackoverflow.com/questions/1531172/how-can-i-create-an-html-drop-down-menu-from-a-csv-file-in-perl/1531723#1531723Comment by John Siracusa on How can I create an HTML drop-down menu from a CSV file in Perl?John Siracusa2009-10-07T19:51:11Z2009-10-07T19:51:11ZDon't forget to escape HTML in the attribute values and inline text.http://stackoverflow.com/questions/1390082/in-perl-are-there-disadvantages-to-generating-getters-and-setters-rather-than-har/1390525#1390525Comment by John Siracusa on In Perl are there disadvantages to generating getters and setters rather than hard-coding them?John Siracusa2009-09-08T02:03:29Z2009-09-08T02:03:29ZBrad Gilbert: I tried it and it's the slowest by far: eval_alias 1329967/shttp://stackoverflow.com/questions/1390082/in-perl-are-there-disadvantages-to-generating-getters-and-setters-rather-than-har/1390525#1390525Comment by John Siracusa on In Perl are there disadvantages to generating getters and setters rather than hard-coding them?John Siracusa2009-09-07T21:31:37Z2009-09-07T21:31:37Zysth: Thanks, I think the backslash got eaten while editing locally. I've corrected it.http://stackoverflow.com/questions/1237504/is-my-rosedbobject-compile-time-too-slow/1238904#1238904Comment by John Siracusa on Is my Rose::DB::Object compile-time too slow?John Siracusa2009-08-31T13:21:00Z2009-08-31T13:21:00ZNo, it means that if you load class A and it has a relationship to class B, class B will automatically be loaded if auto_load_related_classes() is true. If you're already manually loading both classes A and B, then obviously this setting won't have any effect.http://stackoverflow.com/questions/1188220/how-do-i-check-if-a-key-exists-in-a-hash-in-perlComment by John Siracusa on How do I check if a key exists in a hash in Perl?John Siracusa2009-07-27T14:33:03Z2009-07-27T14:33:03ZAre you sure "==" is the operator your want there? Are $PGkey and $hash{$PGkey} both numbers? If they're strings, use "eq" instead.http://stackoverflow.com/questions/945584/is-it-possible-to-execute-multiple-statements-in-a-single-query-using-dbdoracle/945622#945622Comment by John Siracusa on Is it possible to execute multiple statements in a single query using DBD::Oracle?John Siracusa2009-06-03T16:20:57Z2009-06-03T16:20:57ZI'm still curious about an injection into the middle of a statement, e.g. "SELECT foo FROM bar WHERE baz = '$x'" where $x is "123'; DROP TABLE abc" Does the "begin execute immediate" technique always require control of the statement from the beginning?http://stackoverflow.com/questions/945584/is-it-possible-to-execute-multiple-statements-in-a-single-query-using-dbdoracle/945622#945622Comment by John Siracusa on Is it possible to execute multiple statements in a single query using DBD::Oracle?John Siracusa2009-06-03T16:15:58Z2009-06-03T16:15:58ZThe "begin execute immediate ..." technique did the trick. Thanks!http://stackoverflow.com/questions/871324/how-to-remember-a-match-and-its-position-in-an-array-in-perl/871346#871346Comment by John Siracusa on How to Remember a match and its position in an array in perl?John Siracusa2009-05-16T01:49:50Z2009-05-16T01:49:50ZThanks, clarified.http://stackoverflow.com/questions/855139/how-can-i-get-a-row-count-in-dbi-without-running-two-separate-calls-to-process/855869#855869Comment by John Siracusa on how can I get a row count in DBI without running two separate calls to process?John Siracusa2009-05-14T03:57:22Z2009-05-14T03:57:22ZLike the docs say, "For SELECT statements, it is generally not possible to know how many rows will be returned except by fetching them all." The key word is "generally." Some databases using some engines may behave differently. But the only way to be 100% sure in all possible cases is to fetch every row and count.http://stackoverflow.com/questions/821423/how-can-i-calculate-the-number-of-days-between-two-dates-in-perl/821461#821461Comment by John Siracusa on How can I calculate the number of days between two dates in Perl?John Siracusa2009-05-05T00:27:02Z2009-05-05T00:27:02ZThis will give you the number of 86400-seconds blocks of time between two dates, which is not the same thing as the number of (calendar) days between two dates. (Okay, it's actually not even the same thing as 86400-second blocks either, due to leap seconds...)http://stackoverflow.com/questions/655719/how-do-i-unalias-from-perls-stdoutComment by John Siracusa on How do I unalias from Perl's STDOUT?John Siracusa2009-03-17T20:09:23Z2009-03-17T20:09:23ZI know it's just example code, but don't forget to always check the return value of your open() (and close()!) calls. Don't just assume they succeed.http://stackoverflow.com/questions/3626/simple-bug-tracking-suggestions/3649#3649Comment by John Siracusa on SIMPLE Bug Tracking Suggestions?John Siracusa2009-03-12T21:24:56Z2009-03-12T21:24:56ZYes, stevenf is eternally moving his blog. I'm working on getting updated URLs…