I would like to be able to list stored procedures from an ODBC data connection using ADODB.
I have an ADO connection:
Public DBConn As New ADODB.Connection
DBConn.Properties("Prompt") = adPromptAlways
The user selects an ODBC data source.
Then I want to display a list of tables and stored procedures.
Can this be done in the general case, without being specific to the SQL server or Oracle (say)?
source
share