I'm looking at a SQL Server connection string. It looks like this:
Data Source=xxxxxxxx;Initial Catalog=xxxxxxxx;Provider=SQLNCLI11.1;Integrated Security=SSPI
My question is: how is the provider name (in general) mapped to a specific DLL or library?
Here's a second example (for Oracle):
Data Source=xxxxxxxx;User ID=xxxxxxxx;Provider=OraOLEDB.Oracle.1;Persist Security Info=True;
Same question. How do I get from the provider name to the dll or library where the code is?