devxlogo

Discovering if the input OLEDB connection string points to a SQL Server DB

Discovering if the input OLEDB connection string points to a SQL Server DB

' Return a boolean indicating whether the input connection string for the OLEDB ' managed provider points to a SQL Server DB'' Examples:'   Debug.WriteLine(IsOleDbSqlConnString("Provider=SQLOLEDB.1;Data ' Source=.;User ID=sa;Password=;Initial Catalog=MyDB")) ' => True'   Debug.WriteLine(IsOleDbSqlConnString("Provider=Microsoft.Jet.OLEDB.4.0;Data ' Source=D:MyDB.mdb;")) ' => FalseFunction IsOleDbSqlConnString(ByVal connString As String)    connString = connString.ToLower()    Return (connString.IndexOf("sqloledb") > -1)End Function

See also  Who are the Modern GPU Cloud Providers?
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist