1. 2 columns in table have same foriegn key forum.hibernate.orgI have this strage situation where 2 columns in my table has same foriegn key. Table A Id Type_id CreatedDate updatedDate StatusID Table B Id Label Value here type_id and StatusID of Table A refer to Id(primarykey) of Table B in Java VO of table A i defined table B definitions with 2 different signatures and in my *.hbm.xml file i ... |
2. key column=? forum.hibernate.orgHibernate version: 2.1.6 Mapping documents: Code: |
3. table without key column? forum.hibernate.orgim having troubles, to work with a table, that doesnt have a key. i have a table, that is a menu-item and a table, that maps userIDs to menuitem IDs. the second table knows which user sees which menu items. since hibernate needs for everything a key. im wondering, how to get for an user his menu items. menuitem table: KEY ... |
4. Auto increment a column that is not a key forum.hibernate.orghi! i have the same plroblem. i have an entity with a embedded primary key. this entity should have also a "counter". just a normal field defined with autoincrement. The auto increment should be 100000000. The Table created by hibernate should looks like: CREATE TABLE PAYMENTTRANSACTION ( .... (other column definitions)..., invoicenumber INT(9) NOT NULL AUTO_INCREMENT KEY) AUTO_INCREMENT = 100000000; any ... |
5. 1 to 1 - Sharing Same Key Column - Diff. Key Gen Techniq forum.hibernate.orgAuthor Message passionlessDrone Post subject: 1 to 1 - Sharing Same Key Column - Diff. Key Gen Techniq Posted: Mon Dec 15, 2008 4:46 pm Newbie Joined: Fri Jun 03, 2005 11:36 am Posts: 8 Hibernate version: 3.2 Mapping documents: |