1
vote
1answer
20 views
How handles JPA JOINs with available foreign key entry but not available foreign entry?
I wonder how JPA defines to handle following scenario:
Table A: | Table B:
ID FK_B | ID
1 10 | 10
2 null | 12
3 11 |
I want all Table A entries with FK_B NULL or referencing not …
1
vote
3answers
39 views
How to reference one foreign key column with multiple primary key column
I am creating BOOK_Issue table which will contain id of person to whom the book is issued.
i have a column name user_id witch will contain ids from tbl_student as well as tbl_faculty. so how to set …
0
votes
2answers
21 views
accepts_nested_attributes_for not generating foreign key
I have a model
class ServiceRequest < ActiveRecord::Base
has_many :services
accepts_nested_attributes_for :services
...
end
and the child
class Service < ActiveRecord::Base
…
0
votes
1answer
22 views
How do I Relate these 4 Tables
Trying to setup a simple Thread/Poll table mapping.
Here is what I have:
Threads table
ThreadID (Primary Key/Identity Column)
Polls table
PollID (Primary Key, FK for ThreadID for one-to-one …
0
votes
1answer
53 views
Can ActiveRecord HasMany/Belongs To use a non-PrimaryKey Column for the relation?
I'd like to have a parent-child hierarchy AND I'd like to have the concept of a "series-id" on the parent.
So the parent (if you updated it) would expire the old unique key.. keep the series id and …
5
votes
3answers
76 views
Can this relationship be described in Ruby on Rails?
Is this a relationship that can be described in Ruby on Rails' ActiveRecord model relationships?
Customer Address
=================== =========
…
1
vote
5answers
88 views
Database Design w/ Foreign Keys Question
I'm trying to use foreign keys properly to maintain data integrity. I'm not really a database guy so I'm wondering if there is some general design principle I don't know about. Here's an example of …
0
votes
1answer
35 views
Linq to enties, insert foriegn keys
I am using the ADO entity framework for the first time and am not sure of the best way of inserting db recored that contain foreign keys.
this is the code that i am using, I would appreciate any …
0
votes
1answer
97 views
Linq to SQL insert/select foreign/primary records
I have table A and Table B.
Table B contains two columns, Name and ID.
Table A contains several columns and a foreign key column pointing to B.ID called B_ID
On the client side, I have all the data I …
0
votes
3answers
57 views
Trying to find a count of items from a two level deep association, any ideas?
I am working on an application where I need to find the count of submitted items by users that have been referred by a user.
For Example -
User1 has referred 3 people (User2, User3, User4) and each …
0
votes
1answer
26 views
1-n relations and EntityKey with EntityFramework
Hi all.
When I have an entity that holds a reference to a singular entity I can create an EntityKey and assign that value to the EntityNameReference.Value property. It works perfectly and like a …
1
vote
9answers
187 views
Should a two-to-many data relationship be treated as many-to-many?
I have 2 database tables: Teams and Games.
For the purpose of this question, we are dealing with football (soccer) teams and games.
Each Game has exactly 2 teams, generally a home team and an away …
0
votes
3answers
46 views
Updating foreign key values
Hello, I have a database application in which a group is modeled like this:
TABLE Group
(
group_id integer primary key,
group_owner_id integer
)
TABLE GroupItem
(
item_id integer primary key,
…
0
votes
1answer
97 views
hibernate how to create createalias left join?
@Entity
@Table(name = "BOOKTEST")
@NamedQueries({@NamedQuery(name = "Booktest.findAll", query = "SELECT b FROM Booktest b"), @NamedQuery(name = "Booktest.findById", query = "SELECT b FROM Booktest b …
0
votes
1answer
25 views
delete entity that map with another entity
entity A --> id, entity_a_name, foreign_key_entity_B
entity B ---> id, entity_b_name
when i delete entity B record, it suppose to auto delete entity A that has foreign_key_entity_B ?
Error: …
