CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Apr 1999
    Posts
    47

    will ejbcreate() create a new database row

    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?????


  2. #2
    Guest

    Re: will ejbcreate() create a new database row

    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....


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured