• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Batch update in EJB

 
Ranch Hand
Posts: 65
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,

I am using WSAD 5.1 and Db2 8.1 and using EJB 2.0 CMP.

I want to insert records in the database in batch.

How to acheive batch update in EJB 2.0 CMP.

Thanks in advance.
 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,

Why not use an EJB home method.


An EJB Home method is not specific to any entity.
(Perfect for batch processing)


To use it mention the method in the home interface





Then in your bean class place ejbHome<methodName> method (the return values and parameters must match, notice also capital first letter)





Combine this with an ejbSelect and you're done.

Does this help?
(excuse the typos but it this should give you something to check out)


Mike
 
Hd Desai
Ranch Hand
Posts: 65
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Mike,

thnx a lot for update...

I will surely try this and see if it helps.

thanks.
 
reply
    Bookmark Topic Watch Topic
  • New Topic