0 Replies Latest reply on Sep 3, 2002 1:02 PM by cnwy

    EjbCreate not commit?

    cnwy

      I am using jb7&protegra to create a cmp2.0 entity bean by import from the schema.Then I create a EjbTestClient and do some test.
      eg:I add below codes in main
      client.create(new BigDecimal(2)).setName("XXX");

      Everything is ok except I can not find the inserted record in SQL-Plus.

      I can find the record by useing
      client.findByPrimaryKey(new BigDecimal(100)).getName()

      BTW.Container Transactions is setting to "Required".
      DataSource:jboss.jca:service=XATxDS,name=XAOracleDS

      can somebody help?