GetSqlPlusPath – Get the path of the Oracle’s SqlPlus.exe utility

' Get the path of the Oracle's SqlPlus.exe utilityFunction GetSqlPlusPath() As String    Dim regKey As Microsoft.Win32.RegistryKey = _        Microsoft.Win32.Registry.LocalMachine.OpenSubKey("SOFTWAREORACLE")    If regKey Is Nothing Then        Return ""    End If    Dim sqlplusPath As String = System.IO.Path.Combine(CType(regKey.GetValue _        ("ORACLE_HOME"), String), "binsqlplus.exe")    regKey.Close()    Return sqlplusPathEnd Function

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