Hi all,
I want to use Enterprise Services with Oracle9i.
I am using win2000, and I have installed MDAC2.7.
The code sample is:
[TransactionAttribute(TransactionOption.Required)]
public class distribtransaction : ServicedComponent
{
public void Run()
{
try
{
dataAccessComponent newDAL=new dataAccessComponent("Provider=SQLOLEDB.1;UID=sa;Pwd=;Server=ssingh;database=pubs"

;
newDAL.OpenConnection();
newDAL.ExecuteInsertUpdate("update authors set contract=1"

;
newDAL.ExecuteInsertUpdate("update titles set royalty1=11"

;
ContextUtil.SetComplete();
}
catch (Exception e)
{
ContextUtil.SetAbort();
throw e;
}
finally
{
}
}
This code works fine as long as I am using SQL Server, but When I change the connection string to connect to Oracle9i, the page no longer supports transactions.
I will be grateful, If you can provide some help on this issue.
Thanks in advance.
Sujay Kumar