Tagged Questions
The jointable tag has no wiki summary.
5
votes
1answer
542 views
How to delete all associations in a Hibernate JoinTable at once?
We have the following two entities with many-to-many association:
@Entity
public class Role {
...
@ManyToMany
@JoinTable( name = "user_has_role", joinColumns = { @JoinColumn( name = "role_fk" ...
4
votes
1answer
1k views
Doctrine 2 join table + extra fields
I've got two tables and a join table: 'staff', 'classification' and 'staff_classification'. In the join table I've got an extra boolean field: 'showclassification'. My annotation is as follows:
/**
...
3
votes
4answers
211 views
Joining 3 three tables
I have this diagram which should explain my situation I need some help on joining 3 tables which I have no idea how to do this kind of thing:
So I can go through a while loop of retrieving the ...
3
votes
2answers
194 views
Buddy List: Relational Database Table Design
So, the modern concept of the buddy list:
Let's say we have a table called Person. Now, that Person needs to have many buddies (of which each buddy is also in the person class). The most obvious way ...
2
votes
1answer
472 views
Hibernate: How to Join three 3 tables in one join table in Annotation?
Can you please help me how to join three tables with one common join table?
I have USER, APPLICATION, and ROLE tables.
And I want thier IDs to be joined in a table named USER_APP_ROLE(user.ID, ...
2
votes
2answers
96 views
Counting one table of records for matching records of another table
Hey guys. This is my table of how it works:
I want to be able to count the number of views (the views are unique which contains user's IP), for records that matches record in another table, for ...
1
vote
1answer
34 views
OneToMany JoinTable with a non Primary Key value
I'm trying to replicate Facebook's wall in Java EE.
I've got 3 tables:
User, Post, Wall.
User has an username(PK) and other fields, Post has an id(PK), an author(FK on User) and some other.
Wall is ...
1
vote
1answer
52 views
Using a JoinTable
I'm trying to do a twitter-like project using Java2EE, and here's a simple view of the database.
Mention, Followers and Following are three JoinTable.
(Note that mentioned,follower,following and ...
1
vote
1answer
80 views
JPA ManyToMany, how can JoinTable have a property?
I have a question for designing the ManyToMany in EJB, how can a jointable has a property?
Here is an example, the students and courses are ManyToMany, every student have many courses, and many ...
1
vote
1answer
62 views
Deleting just a join table record in Ruby on Rails
I have the following simple models:
class Event < ActiveRecord::Base
has_many :participations
has_many :users, :through => :participations
end
class Participation < ActiveRecord::Base
...
1
vote
0answers
143 views
HowTo map a jointable with extra columns + table-column as part of the Id?
im using an intermediate entity-class to map additional columns to a jointable.
SQL:
CREATE TABLE backlogaufgabe
(
id serial NOT NULL,
id_backlog integer NOT NULL,
id_aufgabe integer NOT ...
1
vote
1answer
569 views
Hibernate @WhereJoinTable trouble
I'm getting used to hibernate but every now and again I hit a stumble, here's another one.
I'm trying to achieve the following:
@OneToMany
@JoinTable(name = "inter_spec",
joinColumns = { ...
1
vote
1answer
515 views
HQL JoinTable not accessible
i have a many to many relationship between media and tags:
Medium:
@ManyToMany(fetch=FetchType.EAGER)
@IndexColumn(name="tags_index_column")
@JoinTable(name="tag_map",
...
1
vote
1answer
72 views
Storage of different data formats in Rails dynamically defined by admin
I'm facing a problem where I cannot permanently decide which columns one of my models will have.
A use case will be this:
An admin creates a new dataset, he wants users to answer. In the dataset the ...
1
vote
1answer
70 views
Does @JoinTable has a property of “table” or not?
The following is copied from hibernate's document. (http://docs.jboss.org/hibernate/stable/annotations/reference/en/html_single/#d0e2770)
@CollectionOfElements
@JoinTable(
...
1
vote
1answer
382 views
Polymorphic Join Table in Rails?
In my app, an Event has multiple items associated with it, potentially all of different types. For example, a "User ate a Banana" Event would have a User and a Banana associated with it.
It seems ...
1
vote
0answers
1k views
Using Restrictions.disjunction over @JoinTable association
This is similar, but not identical, to:
http://stackoverflow.com/questions/1528352/hibernate-criteria-query-on-different-properties-of-different-objects
I have a SpecChange record, which has a set ...
1
vote
1answer
631 views
JPA Secondary Table Issue
I have a three tables: User, Course, and Test.
Course has a User foreign key and Test has a Course foreign key. I am having trouble mapping the Test collection for each User since I need an ...
0
votes
1answer
29 views
increase speed of group by query on table in postgres
I have a join table with the following structure:
CREATE TABLE adjectives_friends
(
adjective_id integer,
friend_id integer
)
WITH (
OIDS=FALSE
);
ALTER TABLE adjectives_friends
OWNER TO ...
0
votes
1answer
31 views
Implementing a three-way join relationship in JPA 2.0
I am trying to implement a three-way join relationship in JPA 2.0 (using annotations).
My domain is as follows:
I had a look at the @JoinTable annotation and I am not sure how to use it in order to ...
0
votes
1answer
125 views
JPA. JoinTable and two JoinColumns
I need to create table PORTATION_MODEL_SET. And I need to create two keys from table portation and one key from table phone_model
I have code:
@Entity
@Table(name="PORTATION")
...
0
votes
0answers
32 views
How can I use composite key in a jointable in GORM?
I can't use a composite key in a jointable (org.hibernate.MappingException).
Here's a small example using class Person (The composite key is name and surname) and class Address (The key is ...
0
votes
1answer
18 views
Change join table by another entity in hibernate
I have 2 entities: Person and Phone (one-to-many relationship). I want to use JoinTable:
class Person
@OneToMany()
@JoinTable(name="PERSON_PHONES",
joinColumns={ ...
0
votes
1answer
129 views
JPA: persist does not insert into join table
All,
I am using JPA for this application and annotations for Mapping entities. I have an entity called UserStory and another one called Revision. There is a OneToMany for UserStory to Revision.
...
0
votes
1answer
50 views
Database design and optionality in relationships of join tables
I am designing a database model and a question occurred to me: what's the point of specifying whether the join-table side of a relationship is optional bearing in mind it has no effect on the ...
0
votes
2answers
88 views
JPA: @JoinTable - Both columns are Primary Keys.. How do I stop that?
This is my annotation I use to generate my Join Table.
@OneToMany(cascade = CascadeType.ALL)
@JoinTable(name = "service_operations",
joinColumns = { @JoinColumn(name = "serviceId") },
...
0
votes
1answer
101 views
RESTful form_for with nested resources via join table
I'm trying to build an app where there is a model for "Jobs" that can be associated with a "Tags" model where the associations are tracked using a join table. I'm wanting to find it it's possible to ...
0
votes
0answers
45 views
Editing/Viewing/Destroying a join table item
this is a spin-off from my previous question about trying to access a join table which has no ID.
I did manage to get into the App_Server index page, where I can display all the various fields from ...
0
votes
1answer
44 views
Removing items from join table in hibernate when deleting entities
I have 2 classes with @ManyToMany relationship
first class: Clip
second class: Location
the main idea is that a clip can be available in several locations
this is the clip class.
@Entity
...
0
votes
3answers
46 views
Issue in writing a SQL statement
I have a MySQL table called Hotel. in that i have the following fields ID,hotelName,Address,YearOfEstablishment.
The YearOfEstablishment is type Date and it'll store a date as 2010-12-26. What i need ...
0
votes
2answers
67 views
Write a SQL to Join tables and save it to a List <Object>
I am using Netbeans 6.9.1, glassfish 3.1, and MySQL as my DB.
I have a List <Hotel> object, that saves all the records from the Hotel Table (from MySQL) into it.
There is another object ...
0
votes
1answer
130 views
Mapping an additional column to a composite-id while keeping the property-mapping for it
im using an intermediate entity-class to map additional columns to a jointable and it works fine as long as the Id will be generated from the both fkeys from the involved tables.
I want to implement ...
0
votes
1answer
63 views
Rails - syntax error in controller for using 2 join tables
I'm trying to deal with multiple join tables in employee's controller.
I have 2 join tables: http://img7.imagebanana.com/img/1cze8z4k/beziehungen.png
employee -> position -> join table ...
0
votes
1answer
123 views
Rendering joinTables as a list in Grails
I've got two domain classes: Car and Driver. I'd like to make a gsp view that displays the Car and Driver info in a list that looks more or less a default scaffolded list. For example:
Make Model ...
0
votes
1answer
89 views
Indices on `has_and_belongs_to_many` join-tables
When using a join-table [:left_id, :right_id] in Rails, what indices should it have?
I googled for the answer and have only found that people suggest single index containing both keys. But in most ...
0
votes
1answer
2k views
Mapping many-to-many association table with extra column(s)
My database contains 3 tables:
User and Service entities have many-to-many relationship and are joined with the SERVICE_USER table as follows:
USERS - SERVICE_USER - SERVICES
SERVICE_USER table ...
0
votes
1answer
195 views
Hibernate @JoinTable issue
I have a strange issue with Hibernate 3.5 which I hope some one can help me with.
Context:
A FAC has zero or more "core" SECT's.
A FAC has zero or more "related" SECT's.
A SECT has exactly one ...
0
votes
1answer
370 views
Rails 3 - Join Table with not _id Columns
I'm trying to use a join table with a foreign key that does not end with _id and points to an non id primary key. Here's what I have.
My join table looks like so:
[DepatmentsLocales] (
...
0
votes
3answers
49 views
Is it possible to do an SQL query across two tables?
I have a couple tables that look like this:
___________ ___________
| Books | | Tags |
|-----------| |-----------|
| book_id | | tag_id |
| book_name | | tag_name |
...
0
votes
1answer
145 views
Rails HBTM join_table overwirting table_name
I'm running Rails 2.3.2 and doing:
class StandardWidget < ActiveRecord::Base
has_and_belongs_to_many :parts, :join_table => "widgets_parts", :association_foreign_key => "widget_custom_id"
...
0
votes
1answer
511 views
Rails 3 nested forms with has_many :through, entry in join table dosen't get deleted after update
i have a 'User' model which has a has_many relationship to a 'Number' model through a join table 'user_number' model.
I use
accepts_nested_attributes_for :numbers, :allow_destroy => true
in the ...
0
votes
3answers
105 views
In Rails how does one find disassociated records in a HABTM relationship?
I have a HABTM relationship between Videos and Campaigns in Rails which means the association is stored in a join table. I want to find all the Videos that do NOT have an associated campaign. What ...
0
votes
3answers
975 views
Self referencing symmetrical Hibernate Map Table using @ManyToMany
I have the following class
public class ElementBean {
private String link;
private Set<ElementBean> connections;
}
I need to create a map table where elements are mapped to each other in a ...
0
votes
2answers
66 views
Modeling a Join Table
I have the following database model:
[User]
Id
Name
[Role]
Id
Name
[UserRole]
UserId
RoleId
IsActive
And I want to create a nice way to represent this relationship and the property that is in ...
0
votes
3answers
616 views
Multiple @ManyToMany sets from one join table
I'm mapping a proprietary database to Hibernate for use with Spring. In it, there are a couple of jointables that, for entity A and entity B have the following schema:
CREATE TABLE AjoinB (
idA int ...