Is there any reason why you want to use ODBC on a non-Windows system? ODBC adds a lot of overhead and prevents using shortcuts. For most free and many commercial RBDMS', you can get native DBI drivers (in the DBD:: namespace) that are faster and support special features of the individual databases. Unless you have very special requirements (such as a 3rd party application requiring an ODBC manager), it is very likely that you need neither DBD::ODBC nor an ODBC manager. Install the required client libraries provided by the RBDMS and the native DBD (DBD::Pg, DBD::mysql, DBD::Oracle, DBD::DB2, ...) and you're done. If you want to connect to a MS SQL Server on a Windows server, read the DBD::ODBC::FAQ. From there, you will learn that you either need to spend money or use DBD::ProxyServer, DBD::Gofer, or DBD::Sybase.

Alexander

--
Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so". ;-)

In reply to Re: Installing DBD::ODBC by afoken
in thread Installing DBD::ODBC by Steve_BZ

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.