OLEDB and ODP.NET and C# connection
936666Sep 11 2012 — edited Jun 28 20131) I am trying to code with OLEDB for TimesTen database
I have used OLEDB Connection to connect TimesTen database
using System.Data.Oledb;
connectionString = "Dsn=MYDatabase";
For OLEDB we need to specify the Provider, the Provider for MS SQL Server is like Provider=SQLNCLI10; and for Oracle Provider is Provider=OraOLEDB.Oracle; like wise what is the provider we need to specify for TimesTen database.
Whether OLEDB is supported by TimesTen or not.
2) What is code with ODP.NET for TimesTen database?
If i use ODP.NET then what is the connection string and what name space i need to specify can i specify the name as Oracle.DataAccess.Client
using Oracle.DataAccess.Client;
connectionString = "Dsn=MYDatabase";
since it is for Oracle can i specify this name for TimesTen also.
Thanks!