Recent content by jkp

  1. J

    Oraclesession.pooling=psMTS,it is not normal for COM+ which is support transaction

    first:OracleSession.pooling=spMTS when component's transaction set to "request a transaction" ,directly call it's procedure,last call setcomplete method,then it can put data into database; where component'stransaction set to "support transaction",directly call its's procedure,last call...
  2. J

    Oraclesession.pooling=psMTS,it is not normal for COM+ which is support transaction

    error: Can't commit an MTS controlled transaction
  3. J

    Oraclesession.pooling=psMTS,it is not normal for COM+ which is support transaction

    following is oracle monitor result: -------------------------------------------- 1. OracleSession.pooling = spMTS component's transaction set to support transaction Session.LogOn as du@devfbp Query.Execute(1 record processed) select to_char(userenv('SESSIONID')) from dual Query.Execute(1 record...
  4. J

    Oraclesession.pooling=psMTS,it is not normal for COM+ which is support transaction

    this is my component (poolQry.dfm) object PoolerQry: TPoolerQry OldCreateOrder = False AutoComplete = False OnActivate = MtsDataModuleActivate OnDeactivate = MtsDataModuleDeactivate Pooled = True Left = 465 Top = 173 Height = 255 Width = 314 object DataSetProvider...
  5. J

    Oraclesession.pooling=psMTS,it is not normal for COM+ which is support transaction

    sorry,my english is pool. when component's transaction set to support tansaction,It can't put data into database,but no error ocurr. I think,I set incorrectly which parameter wrong.
  6. J

    Oraclesession.pooling=psMTS,it is not normal for COM+ which is support transaction

    I have to component,one is first,the other is second. first component have a oraclesession.oraclesession.pooling is set to psMTS. first component inherite from TMtsDataModule and have a queryexecute method. second component inheritd from TMtsAutoObject. when first and second...
  7. J

    Oraclesession.pooling=psMTS,it is not normal for COM+ which is support transaction

    set Oraclesession.pooling=psMTS COM+ under oracle service of MTS 1.client first call COM+(request transaction) ,that in com+ setcomplete is ok.it can commit data into oracle9i2 database; 2.client first call COM+(support transaction),then in com+ can't post to oracle9i2 database,and not error...
Back
Top