Does anyone know if Win32::ODBC supports ADO? If it does, you can set up your connection string to be DSN-less.

For example, for an access database, you'd set up the connection string as follows..

"DBQ=C:\path\to\you.mdb;DRIVER={MS Access (*.mdb)}"

and for an MS SQL connection..

"Provider=SQLOLEDB; Data Source=Server_Name; Initial Catalog=DatabaseName; User ID=UserID; Password=Password"

This way you won't have to install DSN's on any of the machines. There's a bunch of debaet over performace.. some people saying that it's better DSN-less and others saying it's slower. I can't weigh in on that, but it will help you with you problem..

Hope this helps..

Rich

UPDATE The first example is NOT ADO. It should work regardless of whether or not Win32::ODBC supports ADO though... it's just a standard DSNless connection. There's an ADO method to connect to access database also. If you need more info on any of this, let me know and I'll dig up some more info.


In reply to Re: adding DSN to a machine by rchiav
in thread adding DSN to a machine by Anonymous Monk

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.