1
vote
1answer
65 views

JPA, do not want insertable=false, updatable=false, workaround?

i am new to both stackoverflow and JPA so i will try to explain this the best i can. In a entity i want to set the foreign key by giving the int value but also i want to set it by giving a object. ...
0
votes
0answers
107 views

Hibernate and Foreign Key Constraints

I have several Hibernate mapping files with many-to-many and many-to-one sets referring to other objects. I am trying to implement a back office scheme that can delete objects but I constantly run ...
1
vote
2answers
45 views

java hibernate entity: allow to set related object both by id and object itself

I've got a following Java class which is also a Hibernate entity: @Entity @Table(name = "category") public class Category { @ManyToOne @JoinColumn(name="parent_id") private Category ...
1
vote
1answer
79 views

Eclipselink/Derby: Foreign Key Constraint

I am trying to remove an object CATEGORY. All keys in this particular object are <null>. Nor is the ID of this object part of any foreign key in another object. Still I'm getting a violation. I ...
0
votes
1answer
135 views

org.hibernate.MappingException: Foreign key (FK12A711396456CA10:) must have same number of columns as the referenced primary key

I'm having this error at Netbeans in my Java code: org.hibernate.MappingException: Foreign key (FK12A711396456CA10:devolucion_master [devolucion_consecutivo])) must have same number of columns as the ...
1
vote
0answers
50 views

Auto-update foreign key collections in hibernate

I am working on an application that has many foreign-key relationships that have some rather complex business logic associated with them. We often need to add a child to a parent (sometimes a brand ...
0
votes
1answer
56 views

Hibernate: how can I delete an entity in the one-to-many relationship in the “many” side from the “one” side

I have noticed that Hibernate does not allow to delete an entity in an one-to-many relationship. I have two tables (and entities), company and employee. I would like to delete an employee with the ...
0
votes
2answers
253 views

annotated hibernate mapping id/long foreign key to nullable column

I've got the following class mapping a MySQL table: @Entity @Table(name = "category") public class Category { @Id @GeneratedValue(strategy=GenerationType.AUTO) @Column(name = "id") ...
0
votes
0answers
58 views

@ForeignKey naming with TABLE_PER_CLASS inheritance

I wish to rename the foreign key of my child class. Is there a way to do this with @hibernate? So what happens, is that I "kind of" get duplicate foreign key in both tables named, ...
0
votes
1answer
144 views

ORMLite - how to create an object and populate foreign collection?

I'm trying to create an object and populate members of a foreign collection held by that object in a single operation. I've tried every ordering of operations I can think of, and just can't seem to ...
0
votes
0answers
109 views

How to tell hibernate to generate a foreign key constraint with 'on update/delete restrict'

Hibernate generates foreign key constraints like this in PostgreSQL: ADD CONSTRAINT fk4027e58ea8b36313 FOREIGN KEY (fk_responsible_person) REFERENCES employee (id) MATCH SIMPLE ON ...
0
votes
0answers
43 views

@ForeignKey at a simple attribute

The environmnet is OpenJPA 2.2.1. I have a mapping like this: @Column(name = "salutations_id") @Element(name = "title_id", data = true, required = false) private Long salutations_id; There is a ...
0
votes
1answer
1k views

Hibernate Issue : Foreign key must have same number of columns as referenced primary key

Goal : I want to have importJobId in ImportJob as foreign key for id of allocation table, such that when we have importJobId then and then only we can have id in allocation as without Job there cannot ...
0
votes
1answer
128 views

Entity class with a composite primary key doesn't have getter and setter

I have an entity class userdetails which has the username, userid (numeric) and password fields, with username and userid forming a composite primary key. This is negotiable, and possibly unimportant ...
1
vote
2answers
111 views

sql query to retrieve sum of contact records that match to one user with mysql and java

I have two table user and contact, each user can have multiple contacts I want to draw a graph (camembert) with JFreeChart(java library) to present the number of contacts that has each user I tested ...
0
votes
1answer
430 views

How to write query in java to insert data with foreign keys using MySql

Table 1 :questions(qid,category,question); PRIMARY KEY:qid,category Table 2 :choices(ch_id,qid1,category1,choice); PRIMARY KEY: ch_id Here qid, ch_id use AUTO_INCREAMENT. Sql Query: ...
0
votes
1answer
167 views

Hibernate and mysql error : Cannot add or update a child row

i have a hibernate error wich sais : 15:32:48,554 DEBUG SQL:111 - insert into apurement.user (groupe_id, username, password, email) values (?, ?, ?, ?) 15:32:48,664 WARN ...
0
votes
1answer
74 views

How to replace a foreign key by another field in swing with jdbc?

This is a beginner question, maybe I'm missing something obvious, but how should I use a TableModel with jdbc in order to show another field's value from the referenced table instead of a foreign ...
0
votes
1answer
74 views

How to set foreign key nullable?

I have table which is defined like this: @Entity public class Shipment implements Serializable { private static final long serialVersionUID = 1L; @Id @GeneratedValue(strategy = ...
0
votes
2answers
637 views

(Firebird) Foreign key reference target does not exist

I need to synchronize data in two tables from different Firebird databases. Precisely, I need to update records in table Person (1st DB), using records from table Users (2nd DB). Not only "name", ...
0
votes
3answers
109 views

MySQL Transactional delete and Java

I've got tables like this: Table A: `id | name` Table B: `id | A_id | ....` A_id is a foreign key to Table A, the Engine is InnoDB This is the code that fails: String[] ...
0
votes
1answer
98 views

Getting some error while trying to retrieve Foreign key using Java

here "path" variable is having address of Database, and "tb" is the Table Name from the database. here I tried to retrieve the foreign key columns and super tables from tables Connection con = ...
1
vote
1answer
41 views

Obtain Key SQLite Android

I have two tables in which the second table has a foreign key which is defined as table 1's primary key. Under the add operation how can I reference the newly added table 1 key to use as table 2's ...
0
votes
5answers
377 views

Hibernate query one-to-one relationship

I am new to hibernate I created the tables and mappings and I am listing all the rows in my table using the following code. List places = session.createQuery("FROM Place").list(); for (Iterator ...
3
votes
1answer
74 views

Is it necessary to fetch an entity in order to reference it, using JPA and MySQL?

I'm having an application that creates lots of rows which reference two other entities, i.e. there are two foreign key references in the row which realize ManyToOne relationships. These are the two ...
1
vote
3answers
74 views

Deactivate components until an element is selected from JComboBox

I am working on Java swing application using data base with MySQL I need to know if I can deactivate components until select an element from JComboBox? I must know the choice of the 1st jcombobox to ...
0
votes
0answers
35 views

How to refer a key from a class and add it as your key in JDO while adding entry

I am actually new to JDO and using it in the code. I am creating an add operation where, I have to add an entry into two tables such that, for example -> I have to set key of one table and use this ...
0
votes
1answer
113 views

Creating multiple tuples in multiple tables

I have a question on creating multiple tuples in multiple tables using Java. Here are my tables. create table department( dept_name varchar(20) primary key, building varchar(15), ...
0
votes
2answers
125 views

Should I map cascade operations in hibernate when it's fully mapped in SGBD?

I've defined all foreign keys and cascade operations in MySQL, should I also map then in hibernate objects or leave MySQL do it's things alone?
0
votes
1answer
199 views

ORMLite ForeignCollections

I have a problem and I just do not know how to solve it. I want to model in JAVA a structure like: Companies, Events and Locations. Each Company includes one or many Location/s which represents ...
2
votes
1answer
558 views

Order by attribute of foreign entity in ORMLite

How can I build a query in ORMLite so that I can use the orderBy function (using either the one with the raw string or the parametrized one) referencing an attribute of a different entity than the one ...
1
vote
2answers
338 views

ORMLite for Android doesn't autorefresh foreign object using foreignAutoRefresh

Here's my problem: I have different entities linked to others up to a nesting depth of 3. All my foreign fields in every object are annotated with @DatabaseField(foreign = true, foreignAutoRefresh = ...
0
votes
1answer
290 views

Composite foreign key and DDL generation in JPA 2

I'm trying to create a class with a foreign composite key and everything works fine, except that the DDL generation doesn't create indeces as expected. I will explain better with some code; the part ...
1
vote
2answers
181 views

Hibernate, Spring and foreign keys

I'm working on a hibernate, spring project to help me understand the basics of those two. I'm running into a problem where i want to be able to add foreign keys to my tables. I've been browsing the ...
2
votes
2answers
2k views

Using PostgreSQL, why doesn't Hibernate/JPA create cascade constraints?

I have an entity Bar: @OneToMany(cascade = CascadeType.ALL, mappedBy = "bar") private Set<Foo> fooSet; And an entity Foo: @ManyToOne(optional = false) @JoinColumn(name = "bar_id") private ...
0
votes
3answers
394 views

Setting/Getting foreign key in Hibernate & Java

Pretty sure this is trivial but unable to find a straight forward answer. I have Dept/Emp tables. Where dept_id in the emp table is a foreign key. It is a classical one-to-many relationship. In a web ...
0
votes
2answers
2k views

Null foreign key, in ManyToOne relation using hibernate [4.1.1] annotations

I am trying to persist a one-to-many and a many-to-one relation using Hibernate 4.1.1 but the foreign key is always NULL. There are two entities: Account and Client. A Client could have multiple ...
1
vote
1answer
285 views

SQLite foreign key constraints

I am using Java with SQLiteJDBC. I was struggling to understand why my foreign keys were not acting as constraints, until I read the following: Prior to version 3.6.19, SQLite did not support ...
2
votes
5answers
1k views

How do you enforce foreign key constraints in SQLite through Java?

It appears that SQLite does not enforce foreign keys by default. I'm using sqlitejdbc-v056.jar and I've read that using PRAGMA foreign_keys = ON; will turn on foreign key constraints, and that this ...
0
votes
2answers
210 views

MySQL delete from table or update table column to mark it as deleted?

Problem details. Let's assume we have some InnoDB table and this table contains some records. My question is: how would you implement the "delete" operation, having in mind some form of operation ...
1
vote
1answer
1k views

Hibernate: Check foreign key constraint violation before delete?

The system I'm currently working on has a policy in which objects that have no relationships can be freely deleted, while those that do must be logically deleted. This is meant to prevent historical ...
0
votes
2answers
443 views

SQLException: Can't create table errno 150/foreign key

After doing some research, it would seem that errno 150 occurs when either table engine types don't match, or when foreign key creation fails for whatever reason. Anyway, my Create script looks like ...
0
votes
1answer
143 views

how can I persist this complex object to database using hibernate?

There are database tables in mysql at the backend corresponding to these classes with Foreign Keys defined accordingly. Let me know if I need to put those relations here. class Itinerary { Airport ...
0
votes
1answer
144 views

Nullable Foreign Key Constraints

We are trying increase the scope of database compatibility for our web application. Our application is JEE (aka J2EE ) with JSPs, Servlets, and EJBs. The database we are trying to make our ...
1
vote
2answers
570 views

How do I add key constrains in hibernate?

I have the following *.hbm.xml file: <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" ...
3
votes
2answers
352 views

ALTER TABLE FOREIGN KEY from java to mysql

Well, I want to make a modification in my database, so I need to use alter table but java seems to have problems making that. This is the sentence ALTER TABLE loans ADD FOREIGN KEY (id_reader) ...
0
votes
3answers
1k views

Hibernate DataIntegrityViolationException of Foreign Key Violation Doesn't Let to DELETE

I have a relationship like that. There is a Car table and CarGroup table. Car group table holds cars inside it. I want that: When a car removed, if it is inside a car group it should be removed from ...
1
vote
0answers
606 views

hibernate mapping foreign-key within primary key to alternate key

I have 3 tables: Account { Long account_id; // primary key, alternate key field 1 Long client_id; // alternate key field 2 ... } Admin { Long office_id; // primary key field 1 Long account_id; // ...
0
votes
1answer
800 views

Hibernate inserting row foreign key error

Please help me. When i try to create new row in database i receive something about foreign key FOREIGNKEY_CUSTOMER_ID. if i just edit some row it works just fine. Here's entity: package entity; ...
0
votes
1answer
254 views

Add comboBox in a JTable for a DB foreign keys

I am doing a DatabaseManager Proyect where I display all the data of a db table in a JTable. Now I want to insert a feature so that the foreign keys of a table are displayed as a ComboBox with the ...

1 2