1. hibernate deletion problem please help urgent stackoverflow.comi have a course object. The course object has a set of tutorials and a set of applications. When i delete a course objects i want the assocated set of tutorials ... |
2. help on hibernate mapping problem... leads please! :) stackoverflow.comOkay, so I have torn what I had down and am rebuilding it, here's what I need to do. I have an entity called Property with: String name; @ManyToOne EntityType type; ??????? value I need to ... |
3. Need help with Hibernate Mapping stackoverflow.com
|
4. Help with Hibernate mapping stackoverflow.comi have the following classes
|
5. need hibernate mapping help (stuck) stackoverflow.comI need to create a connection with a table that isn't in my control yet there's a one-to-many relationship so I'm having a bit of trouble with the hibernate mappings. Any ... |
6. Hibernate Mapping Help! stackoverflow.comI am quite new to Hibernate so I am not entirely sure if what I want to do is even possible (or the right thing to do) so if it is ... |
7. Help with mapping set - Hibernate coderanch.comI'm having problems writing a part of a mapping. First of all, I have these mappings: |
8. Help with mappings in Hibernate coderanch.comHave the following class definitions: |
9. Help with association mapping in Hibernate coderanch.comHave you tried putting your substr stuff in as a formula in your mapping to materialize a column and then join on that? It'd obviously be much better if something that you're using as a foreign key was a separate column. It seems like getting the association going is just the start of the issues. |
10. Hibernate Mapping help required coderanch.comAll, We have two tables, Measure and Measure_Values. The Measure_values table has a composite primary key. Hibernate mappings for both tables are given below. Issue Values are not saved into the Measure_values table and hibernate doesnt throw any exceptions. Create table measure(measure_id number primary key,measure_nm varchar2, measure_type varchar2); Create table measure_value(measure_id number, dim_id number, dim_value varchar2); ) (measure_id & dim_id as ... |
11. Please HELP with Hibernate Mapping! coderanch.comI have a table call CATS, a POJO represent all the field getter/setter for all columns in CATS table, a mapping Cat.hbm.xml. I need to have a query like this String sql= "select cats.*, (select type from cattype where cattypeid in cats.id) as cattype from cats" -----> right here, I want to include the cattype in my resultset SQLQuery query = ... |
12. need help in JPA ANNOTATION regarding Inheritance. coderanch.comI am a newbie here. I have trying to convert old hibernate to JPA Annotation. the issue is When i tried to do DiscriminatorValue for a model, it wont show up in the database table. Here is the model @Entity @DiscriminatorValue("CurrencyType") public class CurrencyTypeComposite extends ContractComponent { /** * serialVersionUID. */ private static final long serialVersionUID = 1L; /** * currencyType. ... |
13. Hibernate !!!! mapping help coderanch.comHi, Thanks for taking the time to reply. I have set up the Hibernate environment in Eclipse. I have the databse drivers and have been successfully able to persist a single POJO in the database. Where I am getting lost is the mapping part. I have not been able to find a link which gives me a clear lucid example. I ... |
14. help with Hibernate mapping coderanch.comHi! I am new to Hibernate and a little a bit confused. I have the following tables: user, video, ques, ans I have the table user_video_ques_ans_rl with the fields: id, userid, videoid, quesid, ansid which is used to store for each userid in which videoid case what answered he has answered to which table I created regular hbm.xml files for user, ... |
15. Multiple Database or Proper Mapping Help forum.hibernate.orgHello, I think the topic on using Multiple Database is already raised many times and I dont think anyone has got a specific solution for this, However I want to ponder few points and I need your help on this one. I am trying to simplify a bigger problem that I am facing with this simple example. I have these two ... |
16. need help, converting simple mapping to annotation forum.hibernate.orgHello, I have a mapping here, but I don't know how to create the annotation (I don't want to use hbm.xml mapping) please help me: Code: |
17. Need help on child collection forum.hibernate.orgsession.saveOrUpdate(parent); This parent row is an already existed one and it also has some children.Now the above query is updating the parent row correctly. Next, int size = parent.getChildren().size(); when i print the size,it always says zero. I also tried by setting fetch="join" in the mapping file for the Parent table. still it says the size as zero. could anyone tell ... |
18. Help needed with mapping a Map with entity keys and values forum.hibernate.orgI feel like I'm 90% there, but I'm stuck on an error and I don't know how to placate Hibernate. I have three entities, Idea, Category, and Category Group. Ideas can belong to one category for each category group, which I've modelled in my domain model as: class Idea { private Map |
19. Please help with mapping to several tables! forum.hibernate.orgHi, All, I am new to hibernate. Please help with my problem and I will appreciate it a lot. Thanks. I have 3 tables in database, property, address and loan. In property table, there are 3 columns: propertyID, addressID and loanID; In address table, there are 3 columns: AddressID, street, citystatezip; In loan table, there are 3 columns: loanID, propertyID, and ... |
20. Help: Error - Domain object not mapped??? forum.hibernate.orgorg.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.springframework.orm.hibernate3.HibernateQueryException: EmployeeCourse is not mapped [From EmployeeCourse where employee = ?]; nested exception is org.hibernate.hql.ast.QuerySyntaxException: EmployeeCourse is not mapped [From EmployeeCourse where employee = ?] ..... Root cause org.springframework.orm.hibernate3.HibernateQueryException: EmployeeCourse is not mapped [From EmployeeCourse where employee = ?]; nested exception is org.hibernate.hql.ast.QuerySyntaxException: EmployeeCourse is not mapped [From EmployeeCourse where employee = ?] org.springframework.orm.hibernate3.SessionFactoryUtils.convertHibernateAccessException(SessionFactoryUtils.java:660) ... |
21. Help with bi-directional M:1 mapping forum.hibernate.orgNewbie Joined: Mon May 10, 2010 1:41 pm Posts: 15 I have two tables DTNAME (holds addresses), DTNAMELOG (holds a list of previous company names and the date and time they were changed). The DTNAME (address) key is a partial key in the DTNAMELOG (address history) file. DTNAME's key (MGROUP, MID) references the partial key (MLGROUP, MLID) in DTNAMELOG. So I ... |
22. Help highly needed with one-to-one mapping forum.hibernate.orgHi, I am running into a much discussed error with a one-to-one mapping, but I just can't getting fixed! I keep running into the following error: Exception in thread "main" org.hibernate.id.IdentifierGenerationException: attempted to assign id from null one-to-one property [nl.marktmonitor.skillskompas.skillskompas.model.UserSession.user] I am trying to tie a UserSession to an AbstractUser in a one-to-one relationship using a foreign key association. This is ... |
23. Help with Mapping forum.hibernate.orgI have a table Table ItemLink - long itemLinkId (PK) - varchar itemType (TOY, FURNITURE, CLOTHING) - long itemId I have three tables Table Furniture - long itemId - .... Table Clothing - long itemId Table Toy - long itemId -------------------- So I created a class Class ItemLink private Long itemLinkId; private String itemType; private Item item Interface Item private getItemId() ... |
24. Need Help Mapping Latest Encapsulated Entity forum.hibernate.orgQuote: So go use the @OneToOne on Blog entity. What's the problem? Now when you do that, you just have to update the post in blob (blog?) entity whenever there is a latest post. The problem is that this is not an option. I provided this as a sample model. The actual model I am working with doesn't deal with Blogs ... |
25. Need Help: Table per Class Inheritance forum.hibernate.orgHello, i have the following "Table per Class" szenario: C extends B and B extends A (with C and B inheriting the primary key ("id") of A) . Which basically means that when an Object of Type C is created. All basic properties will be stored in the superclass A where the primary key is generated, the subproperties will be stored ... |
26. help to identify mapping forum.hibernate.orgHi, this is my first post in this forum..I am developing a web app that has an Invoice,CartItem,Customer classes..I need to identify the kind of mapping I need to create. A user creates cartitems and adds them to ShoppingCart . An Invoice has a Customer and a Set of CartItem objects.I believe cartitem is not dependent upon the invoice's lifetime.So, when ... |
27. Ternary mapping help forum.hibernate.orgBy way of an example, here is my ternary association betwen groups and the various entitlements that group has to system use cases. Code: |
28. Many to many mapping: help! forum.hibernate.org |
29. Help with mapping forum.hibernate.orgI have 3 classes : Resource, Role and Permission Resource: id, date Role: name Permission: id, role, permission Role is a subclass of Resource. Permission contains Resource and Role. I have a problem with my mapping file. Could you help me? I don't know how to represent that. |
30. Urgent Help Need: One to Many mapping. forum.hibernate.orgpublic class Order { private Set purchaseitems; private int orderid; public void setOrderid(int torderid) { this.orderid=torderid; } public int getOrderid() { return this.orderid; } public void setPurchaseditems(java.util.Set v) { this.purchaseditems=v; } public Set getPurchaseditems() { return this.purchaseditems; } } |
31. please help!!!! use of |
32. [help]how can i query primary class by it's map son? forum.hibernate.org |
33. Help with mapping forum.hibernate.orgI have three main tables/objects, Customer, Order and Detail. There is a parent/child relationship between Order and Detail, and a many-to-one from Order to Customer. I have a Status table/object that I needs to be able to reference any one of the three main tables. The obvious approach for me was to have a many-to-one within Status for each table. This ... |
34. Need help in Mapping. forum.hibernate.orgHi, I am new to hibernate and I have studied online materials on Hibernate. But I havent understood how to write a mapping file for the following scenaria. Please help... I have two classes Country and State... Country (int countryID, String countryName, String description); State (int stateID, String stateName, Country country, String description); And the tables are: COUNTRY: Integer COUNTRY_ID --> ... |
35. Please help me with mapping forum.hibernate.org |
36. Need Help! Wrong query result for the children... forum.hibernate.orgHibernate Community View topic - Need Help! Wrong query result for the children... Login Register FAQ Search View unanswered posts | View active topics Board index Hibernate & Java Persistence Hibernate Users All times are UTC - 5 hours [ DST ] Need Help! Wrong query result for the children... ... |
37. Frustrated and Confused by Mapping problems...HELP! forum.hibernate.orgFive words - How do I map this? OK...so maybe some more words are in order. I have a CommunicationVo that has as a property another Vo...mapped to a different table, it's legacy data, so, of course, it has a composite key. A little mapping help here? version - Hibernate 2.1.2 mapping documents -> UserClosedQuestionVo.hbm.xml - |
38. help me defect a one-to-many mapping problem forum.hibernate.orgNewbie Joined: Sun Apr 04, 2004 9:29 pm Posts: 1 New data can't be stored by Hibernate. Running result as following: Hibernate: select hibernate_sequence.nextval from dual Hibernate: insert into mocha_be_process_instance (pmgid, processid, id) values (?, ?, ?) Hibernate: update mocha_be_process_log set activityid=?, processinstanceid=? where id=? ==1/0 1.Both SQL statment should be "insert",but why the 2nd is "update"? 2.there are nothing be ... |
39. Mapping file Help forum.hibernate.orgHello, Anyone interested in helping me create the hibernate mapping files for Petshop database schema. I am having a difficult time with hibernate mapping file. I know its a simple schema but I am a new to hibernate. I am trying to learn how to integrate all these frameworks. I have got the tapestry and spring part right. Once this is ... |
40. Mapping Problem - Please Help forum.hibernate.orgHello, I am pretty new to Hibernate and so far it has been smooth sailing. However, I ran into some tables I am not sure how to map, or if Hibernate can even handle this case.... Table A --------------- id Table B --------------- id Table C ---------------- id Table Z ---------------- id fk_id type Table Z_TYPE ------------------ id description There are ... |
41. Help on Inheritance forum.hibernate.orgHello, I've read the documentation about inheritance, but it's still dark for me. For instance, I'd like to write the Hibernate mapping files of the 3 following classes : Code: public abstract class CodeNom { protected String code; protected String libelle; public ... |
42. one-to-many mapping help please forum.hibernate.orgHello, I have the following table structure: Code: ACCOUNTS ID : VARCHAR(32) PK TYPE : CHAR(1) BALANCES ACCOUNT_ID : VARCHAR(32) PK CURRENCY : CHAR(3) PK BALANCE : NUMERIC(16,2) In other words there are accounts which can have balances in several currencies. The BALANCES table's primary key consists of two fields. I ... |
43. Prolem with one-to-many mapping. Help!!! forum.hibernate.orgHelp!!! I get Error reading resource: tippspiel/tippspiel.hbm.xml since two hours and I can't find the problem. "Mitspieler" is a Player, who could be Admin of several Teams("Tippgemeinschaft"). I'm trying to map one-to many relationship. If I comment the |
44. Help with mapping parent/child with same class. forum.hibernate.orgBeginner Joined: Tue Jan 06, 2004 4:51 pm Posts: 48 Hi, I have entities that are departments, and departments can have parent departments. I am trying to use just one class to map this. However, when I try to do a query like: Code: "... where employee.department.id in (:departments)"; // departmentList is an arraylist of integers q.setParameterList("departments", departmentList); result = q.scroll(); ... |
45. Newbie: Help With Mappings forum.hibernate.orgI am using Hibernate 2.1.4 I have the following psuedo tables [Employee] empid (pk) firstname lastname department email -------------------- [User] userid (pk/fk to Employee.empid) password role status -------------------- [System] systemid systemname --------------------- [Issue] issueid (pk) issuenumber datecreated datemodified problemtext createdby (fk User.userid) acceptedby (fk User.userid) closedby (fk User.userid) assignedto (fk User.userid) employeeid ((fk Employee.empid) systemId (fk System.systemid) ---------------------- And I am ... |
46. mapping file help needed forum.hibernate.orgNewbie Joined: Fri Aug 13, 2004 12:06 pm Posts: 15 Hibernate version:2.1 Mapping documents:needed Code between sessionFactory.openSession() and session.close():n/a Full stack trace of any exception that occurs:n/a Name and version of the database you are using:Pointbase Debug level Hibernate log excerpt:n/a Can some kind sole please tell me how to create the two mapping files for this simple schema? I have ... |
47. Mapping file help, please forum.hibernate.org |
48. Need help for a 1,0 Mapping association forum.hibernate.orgHelp ! ;-) I want to design a very simple mapping scenario with Hibernate and I get some pb. I have 2 tables with a 0-1 association Item --> ItemDetail Here are my tables : Item -------------------------- ITEM_ID Number() MyText Varchar() ItemDetail ---------------------------- ITEMD_ID Number() MyDetails Varchar() ITEM_ID FK on ITEM_ID Table My POJOs: Item { getID(); String getMyText(); ItemDetail ... |
49. Many-to-many Map help.. frustrated beginner forum.hibernate.org |
50. More help with mappings forum.hibernate.org |
51. Please help me with mapping forum.hibernate.orgim really in trouble here so can someone please help me map this.. ive tryed so many different things but it wont work... im a student but i can probably transfer som paypal $ if thats what it takes. What i need is: user 1..1 bookshelf bookshelf 1..* bookline bookline *..1 book a user have a bookshelf the bookshelf contains booklines ... |
52. Mapping Help forum.hibernate.orgHi all, I have a database with following model ( I had simplified to my question only): Table: Contacts ( simply contacts ) id (pk) Name ... readID (fk on ACL(id)) writeID (fk on ACL(id)) userID (fk on USERS(id)) Table: ACL ( Access Control List (ACL) Permission ) permID (fk on Perms(id)) userID (fk on Users(id)) groupID (fk on Groups(id)) Table: ... |
53. help: How to persist the following Inheritance classes? forum.hibernate.orgHi, every one. I am a Hibernate beginner, now I need to persist the following Inheritance classes. Entity (inteerface) | AbstractEntity (an abstract implementation to Entity) / | \ Concrete Entityies The root node of the inheritance tree is "Entity", it is an interface, then I give its an abstract implementation --AbstractEntity,which every concrete entity inherited from. Code: public interface Entity ... |
54. Mapping help forum.hibernate.orgHi, I have this table structure: C->B->A by foreign keys. C B A ---- ---- ---- B_id A_id ... When I load the A object, I want to load all the C's attached to A through B. Is this possible with the current structure? How would I map it? I could add a many-to-many table to reference A->C->A, but this table ... |
55. How should look the mapping file? need help! forum.hibernate.org |
56. need help for mapping file! forum.hibernate.org |
57. Problem with mapping... please help... forum.hibernate.orgHibernate version: 2.1.6 Mapping documents: |
58. Simple Parent - Child mapping problem... please help... forum.hibernate.orgHibernate version: 2.1.6 Mapping documents: |
59. Help with map collections forum.hibernate.orgHi. Let's say I have two tables called business and code and a business can have many codes (so code has a business_id). Codes are simple. They have an id, a number (varchar) and a reference to the business. The business table is really umimportant other than I want to have a map property on the Business domain object of codes. ... |
60. Re: Need Help Sql and Mapped Domain Object forum.hibernate.orgCan any one please help me with following qeury CDDB IS A TABLE FCS_DIVISION IS A TABLE I have a domian class mapped to CDDB table , no class mapped to FCS_DIVISION I need a list of CDDB classes and FCS_DIVISION.FCSD_DESCRIPTIONs SELECT CDDB.DEALER_NUM CDDB.DEALERNAME, CDDB.ADDRESS, CDDB.CITY, CDDB.STATE, CDDB.ZIPCODE, CDDB.TELEPHONE, CDDB.PARTS_ACCT_NO, CDDB.ZONE, CDDB.DIVISION, CDDB.DISTRICT , FCS_DIVISION.FCSD_DESCRIPTION FROM CDDB, FCS_DIVISION WHERE CDDB.DISTRICT = ... |
61. Need Help - mappings forum.hibernate.orgHi, Need some help creating a mapping file for hibernate 2. I have a structure similar to this. class TeamMember { ... Project myPrimaryProject; Project mySecondaryProject; } class Project { .... } I need this to translate to following table structure. teammember(..., primary_project_id, secondary_project_id); project(...); Note: When i persist teammember, i need it to create records in project table aswell and ... |
62. Help with queries against Maps forum.hibernate.orgHibernate version: 2.1.7c Name and version of the database you are using: Firebird 1.5.2 Our domain model has 3 main objects, Printer, Feature and Setting. Each Printer has a Map named "features" whose keys are Strings that represent a type of Feature and whose values are the corresponding Feature objects. For example, a Printer's map might contain "NetworkFeature" which maps to ... |
63. Help me in creating a mapping file for my problem forum.hibernate.orgHi , I've a class as given below. I want to know how to write the mapping file for the same. public class Objective { private String ObjectiveId; private String Objective_Name; private String Objective_Description; private String Objective_Owner; private Objective objective; public Objective getObjective() { return objective; } public void setObjective(Objective objective) { this.objective = objective; } public String getObjective_Description() { return ... |
64. Help on mapping a time table forum.hibernate.orgHi! I need some assistance on the following problem. I'll explain the scenario in brief. I have mapped an Employee-table to Employee java objects and a Project table to Project java objects. Simple enough. In the MySQL database, the two tables are joined using a TimeTable table to describe the amount of hours an employee have worked on a project on ... |
65. Help mapping two objects that can each 'have' a third forum.hibernate.orgWe're using Hibernate 2.1.7c with Firebird 1.5.2. We have two objects, Solution and Service, each of which has a Map of ConfigSetting. Initially we set it up such that both Solution and Service have a Map like this: Quote: This resulted in two foreign key constraints being ... |
66. Help needed with a mapping forum.hibernate.orgHello everybody. Hearing of the great reputation of Hibernate, I've just started my new proyect working on it. I have mapped a few relations but I've found problems with a many-to-many one with attributes in the inter-relation. I know this have been treated many times in the forums, but although I searched a lot I can't get the things clear. I'm ... |
67. Mapping...help required... forum.hibernate.org |
68. Help, can't setup appropiate mapping type forum.hibernate.orgI have two objects Container and Thingy. Container has fields for a specific number of Thingys. Each fields has its own getter/setter methods. The container own's every thingy under it outright (there is no sharing with other instances of Containers nor any sharing between fields within one Container). I wish to be able to create transient Container and Thingys and mess ... |
69. Help needed on many-to-many mappings forum.hibernate.orgNewbie Joined: Wed Jun 30, 2004 4:50 am Posts: 12 Need help with Hibernate? Read this first: http://www.hibernate.org/ForumMailingli ... AskForHelp Hi Gurus, I am facing a problem in many-to-many object relationships. I couldnt able to pin point where I am going wrong. Please let me know if you could see it. Appriciate greatly your help. Thanks alot. Hibernate version: 3.0.2 Mapping ... |
70. Need help mapping a map. forum.hibernate.orgI get data persisted in the iltRegistration table and the appApproval table, but no data in the "map" table iltRegistrationApproval. I need help to understand why. Hibernate version: 2.1.8 Mapping documents: CREATE TABLE [dbo].[iltRegistration] ( [id] [int] IDENTITY (1, 1) NOT NULL , [uzer] [int] NOT NULL , [session] [int] NOT NULL , [passed] [bit] NOT NULL , [attended] [bit] NOT ... |
71. Help mapping inheritance!!!! forum.hibernate.orgHello!!!. I'm using Hibernate 3.0.2, MS SQL Database. I'm trying to map inheritance... but i'm having lots of problems with the GENERATOR tag. Well.. the following code doesn't work!!: |
72. Help with many-to-many mapping table forum.hibernate.orgHibernate version: 3.0.2 I had originally set up a many-to-many relationship using the hibernate many-to-many mapping. This worked fine until I realized I needed to add an aditional field in that mapping table. Therefore I created the link table myself. Here is the hbm file for the link table. Code: |
73. Help Mapping ORM forum.hibernate.orgHi! I'm working with Hibernate and i dont know how to map a class. I'll post the class, the SQL and the Mapping.hbm.xml i've created. If there's somebody who could help me i'll thank a LOT! Under here is the SQL --------------------------------------------------------------------------------------------- CREATE TABLE `projeto` ( `ID_PROJETO` int(11) NOT NULL auto_increment, `ID_TIPO_SITUACAO_PROJETO` int(11) NOT NULL default '0', `VERSAO` varchar(10) default NULL, ... |
74. Need help mapping a property forum.hibernate.orgHey, heres my case: TABLE PRODUCT - PNUMBER (PK) - NAME - ... TABLE PRODUCT_TYPE - PNUMBER(PK/FK) - TYPE(PK/FK) - ... TABLE TYPE - TYPE(PK) - DESCRIPTION - ... How can i map type into product? Is there a way? I do not have the TYPE info anywhere else in the system(its a legacy system...)! thanks!!! |
75. Beginners help needed on mapping objects. forum.hibernate.orgNewbie Joined: Mon Aug 22, 2005 3:15 am Posts: 9 Hi i am a beginner when it comes to hibernate, i evaluated using it 2years ago, but due to the fact that i thought that the project i was working on would suffer due to long adaption time i did not pursue it any more. Now i am working on a ... |
76. Help regardin Hibernate mapping forum.hibernate.orgAs you've mentioned that Class A and B is not related to each other in any way, So i assumed that Class C do not represent one-to-one or one-to-many or many-to-one or many-to-many association between A and B. If my assumption is correct, then, Class C is only a helper class that dont need tobe mapped into database. If you wish ... |
77. Mapping help forum.hibernate.orgHi - I have the usual order/order items object model i.e. the order object contains a Set of items. However, the underlying database is not broken down into order and orderitem tables, instead there is a single orders table that maps orderDates and products directly i.e.: 1 | 1/1/05 | 1 | 4 2 | 1/1/05 | 2 | 6 3 ... |
78. Help with mapping forum.hibernate.org |
79. Plz help: unable to define the mapping :( forum.hibernate.orgMapping documents: hi everyone, I am new to hibernate and using spring framework. I have the Hibernate documentation but unable to figure out. I have been trying to define a mapping for a database insert and select but unable to do that. Kindly help. Following is the scenario: I have following tables: 1) Plan (PlanId, Plan_Name, Type) 2) Plan_Task (PlanId, TaskId) ... |
80. Help mapping many-to-many using relationship tables forum.hibernate.orgHello! I need help implementing the following relationship. I have the following DB structure: CREATE TABLE rate_cards ( rate_card_id NUMBER NOT NULL (primary key) rate_card_name rate_card_percentage change_date ) CREATE TABLE advertiser_rate_cards ( rate_card_id FK to rate_cards, advertiser_id FK to advertiser_v, change_date ) CREATE OR REPLACE VIEW advertisers_v ( advertiser_id, advertiser_name ) ........ ) Advertiser can belong to many rate cards. And ... |
81. Help mapping many-to-many using relationship tables v2 forum.hibernate.org!ENTRY org.eclipse.ui 4 0 2005-10-20 08:30:01.805 !MESSAGE Warning: Detected recursive attempt by part com.genuitec.eclipse.hibernate.editors.HibernateConfigXMLEditor to create itself (this is probably, but not necessarily, a bug) !STACK 1 org.eclipse.ui.PartInitException: Warning: Detected recursive attempt by part com.genuitec.eclipse.hibernate.editors.HibernateConfigXMLEditor to create itself (this is probably, but not necessarily, a bug) at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:543) at org.eclipse.ui.internal.EditorReference.getEditor(EditorReference.java:223) at org.eclipse.ui.internal.EditorManager.findEditor(EditorManager.java:477) ... |
82. Help with mapping (set forum.hibernate.orgHibernate version: 3.0 Hello everyone, I'm having problems writing a part of a mapping. First of all, I have these mappings: Code: |
83. mapping problems...please help!!!!!! forum.hibernate.orgHi, I was trying to write the mapping files for one of my classes. But I do not know how I can map these: 1) I have a field in my class of type File, I want the corresponding table of the class to have just the absolute path of this file stored as VARCHAR. Since FILE is a java class ... |
84. simple mapping questions - please help forum.hibernate.orgHey everyone, I think I may be making this one relationship harder on myself than I need to but the problem is it just doesnt seem right... I have an object, Borrower that has a member called governmentMonitoring. class Borrower{ .. private GovernmentMonitoring governmentMonitoring; .. } This is one to one right? The problem is that i ran the eclipse hibernate ... |
85. Mapping problem... need help forum.hibernate.orgI have searched in the book Hibernate in Action, the online documentation and mapping examples, but could not find something which would resemble my problem. I am maping an existing relational model to use with Hibernate. Its structure was done some years ago and some of it is a real challange to map. This is one of those challanges: The Class ... |
86. Help with association mapping in Hibernate forum.hibernate.orgThanks, but, how can I specify an association like substr(table1.field,4,10) = table2.field, I mean the value of field for table2 is contained in the field of table1, that's why I need to take only the characters from position 4 to 10 in the string field for table1. Both fields are primary keys in their respective tables... Thanks, |
87. VERY URGENT - PLS HELP!!! Py key mapping to two FN keys? forum.hibernate.orgNewbie Joined: Tue Jan 17, 2006 12:51 pm Posts: 8 I forgot to mention that we use another column in the tables. The column is called "deleted" and it indicates whether that row is deleted or not. This is done as a standard in order to avoid physical deletion of rows. Table 1 Part_Id - int identity (10) - Primary key ... |
88. Mapping...doubt...plz help forum.hibernate.org |
89. Mapping help forum.hibernate.orgHibernate version: 2 I have a mapped object, let's call it product: ------------------------------ | id | .... other colums | -------------------------------- | 1 | ... | 2 | ... and a table representing monthly data related to this product. ------------------------------------ | product_id | month | data ----------------------------------- | 1 | 20060201 | 50 | 1 | 20060101 | 60 | 1 ... |
90. Help for a newbie about Mappings and Queries. Read please!! forum.hibernate.orgHi all guys, I'm totally new to Hibernate world so I have a lot to learn. Actually, I'm tryin' to realize the following: I have two tables: Cars table and Price table made up as follow: Car: Integer carId [PK] String factory String model String color Price Integer priceId [PK] Long price Integer id_car [FK] The id_auto field of Price table ... |
91. Help required in mapping lookup table values forum.hibernate.orgHibernate version: 3.1 I've have a data model that has an Employee table which has several foreign keys to a lookup table containing the (string) values. I want to store in my Employee domain object these actual values, rather than the lookup ids. I want to be able to edit and query the data, and need advice on the best solution ... |
92. Mapping -help forum.hibernate.org |
93. need help mapping a one-to-one relationship forum.hibernate.org |
94. Need help with comosite-id mapping forum.hibernate.org |
95. Help with tree node mapping forum.hibernate.orgHi, Can anyone see anything wrong with the following mapping?? |
96. [ARCHITECTURE & MAPPING] Help & suggestions needed forum.hibernate.orgNewbie Joined: Thu Apr 27, 2006 4:56 am Posts: 12 I'm currently helping with the design of the architecture of a new client-server application the company I'm working in is about to develop, and I would like to have the Spring Community comment my ideas, and give me better ideas maybe, regarding how could I tweak or overhaul the whole design. ... |
97. Need help with one to one mapping forum.hibernate.orgNewbie Joined: Sun May 07, 2006 7:40 pm Posts: 3 Hibernate version: 3.x Mapping documents: Bus.hbm.xml: Code: |
98. [b]Need help with inheritance mapping.[/b] forum.hibernate.orgHibernate version: 2.0 Name and version of the database you are using: postgres2.0 Hi, I am trying to use the hibernate Inheritance mapping concepts to solve a scenerio in our application ,but am stuck at one scenerio. Our application has two (2) level of Software Requirements defined as Level1Requirements and Level2Requirements, now Level2Requirements has all the fields that Level1Requirements has, so ... |
99. mapping help forum.hibernate.orgHibernate 3.1.3 I have only ever used Table-Per-Concrete-Class mapping strategies, but now need to map more complicated stuff. I have 2 kinds of Accounts: Company-Accounts and Person-Accounts Company-Accounts are associated with one or more Companies, each of which then are associated with one or more Persons. Person-Accounts have no Company at all, and are associated directly with one and only one ... |
100. Muliple Collection Mapping Help Needed forum.hibernate.orgHibernate version: 3.1.3 I need some help mapping two collections of the same entity to one class. I have a parent table called Game. Game has several fields including two foreign keys, HomeTeamId and AwayTeamId. There is another table called Roster. Roster has a RosterId, GameId, TeamId and PlayerId field. The Roster table defines which Players are playing on what teams ... |