Hi, > > I need help! I cannot find enough documentation that > explains what one > needs to do with a new project. > > If I understand correctly, OJB will take a database schema > (expressed in > XML) and generate everything I need to access the database > entities through > objects.
No that's not correct. OJB is formost a *mapping* tool. that is you'll have to provide an object model containing all your entity classes. You also have to build a corresponding database schema. Then you have to write the repository.xml file that defines the mapping between object model and relational database schema. We have *some* support for automatic generation from rdbms schema to repository.xml and oo model. We also have a tool to generate the rdbms tables from the repository.xml. These tools are mentioned in the last section of tutorial1.html. BUT: These tools are not working properly right now! We plan to have a complete forward/reverse engineering suite in the 2.0 release! > I cannot figure out how to make this happen. I have found a > little information on the OJB jakarta site that shows example > configuration > files; however, what do I do after writing these files? > Don't I need to > create a build.xml for ant that will facilitate the class generation? > As mentioned: we don't do any class generation! Please read our tutorials to learn how OJB works. cheers, Thomas > > __________________________________________________ > Michael Blake Day > Nextel Communications, Inc. > email: [EMAIL PROTECTED] > desk: 678.966.4792 > > -- > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
