0 Replies Latest reply on Sep 15, 2003 1:15 AM by praveenk

    Problem with findByxxx() method

    praveenk

      I have a problem with findByxxx() method.. in Container managed bean.

      i have
      Collection collection = home.findByOwnerName("fieldValue");
      specified in my Client Program, where ownerName is the cmp fieldname..

      and

      public Collection findByOwnerName(String ownerName) throws RemoteException, FinderException

      defined in my home interface.
      i have not mentioned the findBy() method anywhere else (Bean class).

      Even if i have a same "fieldValue" in the database (Oracle), which i specified in findBy() method, iam a result of owner Not found, which is not the case as i have that owner name.

      for the same application if i use findByPrimaryKey(), it is working..

      Can any one please post me the solution.