when an ejbcreat() method is called - obviously when using EJB's - it actually create the database table?
what is the actual flow of this process?????
Printable View
when an ejbcreat() method is called - obviously when using EJB's - it actually create the database table?
what is the actual flow of this process?????
ejbcreate() method is generally used to do one time jobs and not create database rows what you do here is initialize connections to DB etc. and use these connections in the finder or other methods that you will write to submit
query to your database....