[Develop Environment]
1) ASE12.5, OLEDB
2) 2tier connection is sussfully done.
3) 3tier MS COM+ connection is failed.
4) Develop Language : Visual Studio 2005(.NET 2.0), C#
5) Connction Example:
----------------------------------------------------
string sConnectionString =
"Provider=Sybase.ASEOLEDBProvider;Data
Source=TEST_SYBASE;User Id=aaa;Password=aaapass";
System.Data.OleDb.OleDbConnection connection;
connection = new
System.Data.OleDb.OleDbConnection(sConnectionString);
if (connection.State != ConnectionState.Open)
{
connection.Open();
}
----------------------------------------------------
If I have to develop using MS COM+ service with ASE
database(3tier), what do I need to do ?
So I want to confirm followings:
1) Is it possible and support to connect and use your ASE
using MS COM+ service?
2) Do you have plan to support MS COM+ in Visual Studio
2005?
3) When it available if you have plan to support
4) Any other information to clear my problem