Link to home
Start Free TrialLog in
Avatar of johncherian
johncherian

asked on

OracleCommand.Transaction property is read only Pls Help me

I Am Using oracle 9 .2. and Vb.net 2005
Imports Oracle.DataAccess.Client
Imports Oracle.DataAccess.Types
Dim lCmdSql, lCmdErr As New OracleCommand
Dim lTrans, lTransErr As OracleTransaction
lCmdSql.Connection = conGlobal
'lCmdSql = conGlobal.CreateCommand()
lCmdSql.CommandTimeout = 500000
lTrans = conGlobal.BeginTransaction(IsolationLevel.ReadCommitted)
'Error Come Here
Transaction property is read only
lCmdSql.Transaction = lTrans'''''''''''


How iCan Solve this Problem
Pls Help me With code
ASKER CERTIFIED SOLUTION
Avatar of edokan
edokan

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial