If the db provided isn't SQL Server and OleDB, which class should i use

  • Thread starter Thread starter Mullin Yu
  • Start date Start date
M

Mullin Yu

my connectionstring is something like this:
"Provider=FnDBProvider;Data
source=edmscs2^ccbs-edmsdb1;SystemType=2;logonid=2a7cecf1a4e9c2eda2ea7a65f6d
4a90a;"

the provider isn't ms-sql or oledb, i can't use SqlConnection and
OleDbConnection class, then which one should I use?

thanks!
 
Mullin said:
the provider isn't ms-sql or oledb, i can't use SqlConnection and
OleDbConnection class, then which one should I use?

Without a native .NET provider, it'll have to be OLEDB or ODBC compliant.

--
There are 10 kinds of people. Those who understand binary and those who
don't.

http://code.acadx.com
(Pull the pin to reply)
 
It's probably ODBC, but do you know what the actual DB engine is outside of
the connection string?
 
Back
Top