It looks like with .NET Microsoft has done away with outright support for ODBC in favor of newer methods for accessing databases.<BR><BR>I have a legacy data source that I can query via ODBC. What I ...
Tony Patton explains how you can set up and work with Open DataBase Connectivity (ODBC) technology in your .NET applications. He also highlights the ODBC .NET Data Provider, which provides ODBC access ...
heres the asp code, to conect to a database:<BR><BR><%<BR>Set db = Server.CreateObject("ADODB.Connection")<BR> db.Open ("dsn=site;uid=sa;pwd=.....")<BR>%><BR>and the ...