ADO.NET connection string

  • Thread starter Thread starter Duncan Winn
  • Start date Start date
D

Duncan Winn

I am trying to connect to an INTRBASE database through the MS OleDb.NET
provider, however I am unsure of what to use for the connection string. How
can I find this out???
 
Duncan said:
I am trying to connect to an INTRBASE database through the MS OleDb.NET
provider, however I am unsure of what to use for the connection string. How
can I find this out???

When I need to find the connection string, I use
MSDASC.DataLinks.PromptNew() to get the ADODB.Connection and then
inspect the ConnectionString
 
Back
Top