Iīm using a mysql-database and inserted the new entry using a php-based tool
called phpMyAdmin.

Thanks,

Michael

----- Original Message -----
From: "Dmitri Colebatch" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, May 21, 2002 4:10 AM
Subject: Re: [JBoss-user] Server log in JBOSS3.0RC2


> that looks fine (to me)...
>
> what database are you using?  and what program are you using to insert the
new row(s)?
>
> cheers
> dim
>
> ----- Original Message -----
> From: "Michael Delamere" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Tuesday, May 21, 2002 11:33 AM
> Subject: Re: [JBoss-user] Server log in JBOSS3.0RC2
>
>
> Yes, it is a finder:
>
>    public java.util.Collection findAll()
>       throws java.rmi.RemoteException,javax.ejb.FinderException;
>
> I get my data from my ActionServlet using the following code:
> =======================================================
>    // Get a naming context
>       InitialContext jndiContext = new InitialContext();
>
>       // Get a reference to a gbEntry Bean
>       Object ref  = jndiContext.lookup("ejb/guestbook/gbEntry");
>
>       // Get a reference from this to the Bean's Home interface
>       gbEntryHome home = (gbEntryHome) PortableRemoteObject.narrow (ref,
> gbEntryHome.class);
>    entryCollection = home.findAll();
>     }
> ======================================================
> ..... which works fine except that after hitting refresh, I donīt get the
> new entry that I manually entered into the DB.  I havenīt managed to get
> into any depth in terms of "commiting" or "autocommit".  Iīll have to do
> that now and hopefully that is the answer.
>
> Thanks,
>
> Michael
>
>
> ----- Original Message -----
> From: "Dmitri Colebatch" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Tuesday, May 21, 2002 3:04 AM
> Subject: Re: [JBoss-user] Server log in JBOSS3.0RC2
>
>
> > how are you getting the array of objects?  Is this a finder?
> >
> > how are you inserting into the database?  are you sure you're committing
> that tx?  this probably depends on what client you are
> > using to insert, and if it has autocommit set to true or not.
> >
> > cheers
> > dim
> >
> > ----- Original Message -----
> > From: "Stephen Coy" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Tuesday, May 21, 2002 10:45 AM
> > Subject: Re: [JBoss-user] Server log in JBOSS3.0RC2
> >
> >
> > I think you need to learn about transactions and commit options.
> >
> > On Tuesday, May 21, 2002, at 04:50  AM, Michael Delamere wrote:
> >
> > > Iīve got a stateless session bean doing a jndi lookup on my entity
bean
> > > and
> > > returning an array of objects.  The problem is that the first time I
> > > start
> > > the application everything works fine and I get all of the data
> > > displayed in
> > > my jsp without a problem.
> > >
> > > After the first call I manually enter a new record into the database.
> > > When
> > > I press refresh in the browser the new row isnīt shown.  What could
the
> > > reason for this be?
> >
> >
> > _______________________________________________________________
> >
> > Don't miss the 2002 Sprint PCS Application Developer's Conference
> > August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
> >
> > _______________________________________________
> > JBoss-user mailing list
> > [EMAIL PROTECTED]
> > https://lists.sourceforge.net/lists/listinfo/jboss-user
> >
> >
> > _______________________________________________________________
> >
> > Don't miss the 2002 Sprint PCS Application Developer's Conference
> > August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
> >
> > _______________________________________________
> > JBoss-user mailing list
> > [EMAIL PROTECTED]
> > https://lists.sourceforge.net/lists/listinfo/jboss-user
>
>
> _______________________________________________________________
>
> Don't miss the 2002 Sprint PCS Application Developer's Conference
> August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
>
> _______________________________________________
> JBoss-user mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/jboss-user
>
>
> _______________________________________________________________
>
> Don't miss the 2002 Sprint PCS Application Developer's Conference
> August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
>
> _______________________________________________
> JBoss-user mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/jboss-user


_______________________________________________________________

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to