The answer, of course, is "It depends."

Tim Bunce's definition is very precise: DBI is no more and no less that he states. It will shield you from platform dependences in the host program, if you use it as intended. Also, if you use platform-specific (driver-specific) features, at least you can find those quickly when you're trying to port the system.

Of course, it can't guarantee someone won't write non-portable SQL. If you stick to a well-known standard like SQL-92, then there's a very good chance you'll be able to move your DBI-based program across different RDBMS with a minimum of fuss. However, that will also limit your ability to take advantage of platform-specific optimizations. Is the non-portability worth the gain? "It depends" on your shop, what you're doing, and so on.

As for the support question, this is probably one of the best places to get help during development, and even to troubleshoot production code. Depending on your platform, you may be able to purchase support contracts from the likes of ActiveState. (I'm presuming you mean DBI support, not RDBMS support, which is a whole 'nuther thing.) In spite of the fact that there's no single entity standing behind Perl, the support network is in fact huge. You're much more likely to get a reasonable answer here than from a vendor's tech support phone line.


In reply to Re: DBI support for system/application upgrades by VSarkiss
in thread DBI support for system/application upgrades by data67

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.