I'm supporting a legacy C# application which uses ADO.NET for data access. Today one of our client comes up with a different question
Are you using OLEDB or ODBC for data connection?
From my understanding my code is using anyone of this driver but not sure how to confirm. Below is the code sample. I'm using simple SQLConnection class but not sure how to identify the underlying driver. Can someone help?
System.Data.SqlClient.SqlConnection conn=new System.Data.SqlClient.SqlConnection()
conn.Open()