I have a .odc file. I would like to extract the connection string from this throu开发者_如何学Pythongh VBA code.
You could access through connections object in excel
ThisWorkbook.Connections.Item(1).OLEDBConnection.Connection
ThisWorkbook.Connections.Item(1).ODBCConnection.Connection
ODC file shares the same information. If you are still interested in parsing .odx file you could do with XML parser.
Hope that answers your query
精彩评论