![]() |
|
Clear questions and runnable code get the best and fastest answer |
|
PerlMonks |
Re: What is the difference between ADO and ODBC ?by jehuni (Pilgrim) |
on Oct 09, 2001 at 16:43 UTC ( [id://117713]=note: print w/replies, xml ) | Need Help?? |
ADO is basically a high-level OO interface to various low-level OLEDB data providers. ODBC is another kind of low-level data provider, and if there is no native OLEDB provider for the type of database you use, but there is an ODBC one, you can always use the OLEDB provider for ODBC to bridge that gap. IMHO, ADO is a much more flexible option than dealing directly with a data provider like ODBC, unless you really have the need to some sort of low-level optimization. Plus, for an MS database technology like Access, using a native OLEDB provider should be faster. Since you can't set up a DSN, I believe that something like this will work for you:
-jehuni
In Section
Seekers of Perl Wisdom
|
|