Have not seen this before. Did ODBC build and pass its tests properly? I don't see -compression in my man page, is this supported? -- mattr
All modules have been installed correctly and "make test"ed. Since I don't receive any error messages other than the ones listed in my first post, I assume that all necessary "use" statements are present.

The compression is a feature of DBI::ProxyServer. If you don't have access to a copy of the O'Reilly Programming the Perl DBI:
To speed things up, you could configure the proxy server to use on-the-fly compression (via the Compress::Zlib module) to clients querying the database over dial-up connection. . . . You can do this by running the dbiproxy script with the additional arguments of: --compression gzip

. . . In order for your client to be able to send and receive compressed data from the DBI proxy server, you also must tell the proxy driver to use a compressed data stream. This is done by specifying the additional DSN key/value pair of compression=gzip when connecting to the database.

. . . However, compression is a useful and transparent feature that can increase the efficiency of your networks and databases when using DBI proxying.

In reply to Re: Re: ODBC Connect with compression=gzip by jlongino
in thread ODBC Connect with compression=gzip by jlongino

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.