1. Using hibernate to instantiate a lookup table forum.hibernate.orgI want to build an in-memory lookup table of data from the database. This data should simply be a set of elements each of which maps to a single column of a row of the table. This set is not a part of any other persistent object. It is read-only. It will be read from the database but never written to. ... |
2. Best practices for lookup tables ? forum.hibernate.orgWhat r the best practices for simple lookup object, these tables will never change? The thing is I have struts app, the web page has many drop down lists. When I submit the form the only thing available is the ids that were selected in the form. Prior to using hibernate I could easily just stick the id inside the object ... |
3. Fundamentals: best practice for implementing lookup tables forum.hibernate.orgHi all, This is my first post to the Hibernate Forums, so I hope I keep it consise and of benefit. Hibernate version: 2.1 This isn't a problem with Hibernate - it's a question on how best to implement a common business requirement using Hibernate. I have searched Google, Java forums, the Hibernate doco and Hibernate forums before creating this post. ... |
4. Fail to understand solution to lookup tables forum.hibernate.orgHello All I am a Hibernate newbie, and now looking for solution to handle my lookup tables. I mean those tables with 2 columns for id and name, such as country (1, "USA"). I searched and encountered some solutions that describe the use of a class for the lookup table. Now - I think it is a pure waste. I do ... |
5. Arrays & Lookup tables forum.hibernate.orgDoes hibernate support creating value objects from mapping files as arrays? So if I have one table refering to another the objects in the first object is an array instead of a Long representing a primary key. Also, along the same line as the first questrion. if I have lookup tables such as currency and it has a key to a ... |
6. TransientObjectException - On a lookup table forum.hibernate.orgHi, I search the forum but didn't find a solution to my problem. I'm sure it's something easy to do for someone that actually now what he's doing :) I have a table with many-to-one associations to 3 lookup tables. Those lookup tables will never get updated nor will they have rows inserted. Everytime I update/save the parent table (new row), ... |
7. Lookup Table - Best Practices help needed forum.hibernate.orgI have read the reference manual and looked at lots of the code examples included in the Hibernate 3.1 download, however I have been unable to locate a lookup table example. I have a Manufacturer's table with two fields, ID and Name. This table is the lookup table. It rarely changes. I have another table called Products. It has several fields, ... |
8. Custom EnumUserType using lookup table forum.hibernate.orgAuthor Message aebrett Post subject: Custom EnumUserType using lookup table Posted: Tue Jan 16, 2007 4:04 pm Newbie Joined: Wed Sep 06, 2006 7:32 am Posts: 6 Need help with Hibernate? Read this first: http://www.hibernate.org/ForumMailingli ... AskForHelp Hibernate version: 3.2.0.ga I know that it seems mapping Java 5 enums in hibernate has been done to death here and elsewhere, ... |
9. Lookup tables forum.hibernate.orgHi, I'm new to hibernate so I'm not sure if I'm using it for the right thing or not here. I was trying to make my database completely agnostic which seemed to be what hibernate is all about. I don't want to have to install a database on clients machines but have hibernate build them for me. My problem at the ... |