Hi everybody,

I have a sqlite database compressed with bzip2. I need to do some query into database without unzip into a file but using only a memory buffer. I tried with this code but didn't work and I didn't understand why.
use DBD::mysql; use Time::Local; use strict ; use warnings ; use IO::Uncompress::Bunzip2 qw(bunzip2 $Bunzip2Error) ; use IO::File ; my $input = shift; my $buffer ; bunzip2 $input => \$buffer, BinModeOut => 1 or die "bunzip2 failed: $B +unzip2Error\n"; opendb(\$buffer); exit; sub opendb { my $file = shift; my $dbsql = DBI->connect("dbi:SQLite:${file}", "", "", {RaiseEr +ror => 1, AutoCommit => 1}); my $sq_1; my $sh_1; $sq_1 = "select * from tbl_xxx"; $sh_1 = $dbsql->prepare($sq_1); $sh_1->execute(); while( my $field = $sh_1->fetchrow_hashref()) { print "$field->{'pos'},"; } print "\n"; }

Someone could help me.

Thanks you in advance.

pwp71

In reply to How to do some query with sqlite.bz2 file by pwp71

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.