Tagged Questions
The compound-key tag has no wiki summary.
2
votes
2answers
60 views
array_key_exists for compound key in array
How do I check to see if a compound key exists with array_key_exists such as
$myarr['ind1']['ind2']
Would like to see if the key ['ind1']['ind2'] exists in $myarr.
I googled this and looked at ...
2
votes
1answer
39 views
How does MySQL handle compound unique indexes with limited lengths?
Assuming two columns in a MySQL (MyISAM) table:
title VARCHAR(1500)
url VARCHAR(155)
I want to create a composite unique index on both columns. I know of the limiting length feature for too long ...
2
votes
0answers
929 views
Can not set java.lang.Integer field id to org.hibernate.id.IdentifierGeneratorHelper
I need to store some data in a MySQL-database using Jpa 2/Hibernate 3.5.1. For legacy reasons the table I want to store data in has a compound primary key. The first part of the primary key is of type ...
2
votes
1answer
2k views
Compound/Composite primary/unique key with Django
How can you create models (and thus tables) with a compound (composite) primary/unique key using Django?
1
vote
1answer
65 views
Can I avoid redundant primary key columns in a MySQL table for django (python)?
I am aware of the fact, the if I use the ORM of Django every table has to have a primary key column. Somehow if you have a many_to_many table which links to tables (let's call them authors and books) ...
1
vote
2answers
108 views
Why is this compound primary key not working as expected?
I have a table "tbl_project_user_assignment" with a compound primary key.
It is made up of project_id and user_id
Each of these are also a foreign key to the project and user tables respectively.
...
1
vote
1answer
271 views
ORM support for compound primary keys
I've read that compound primary keys will confuse the hell out of typical ORM code generators. Which ORMs work best with compound PKs and which to avoid? (I've a particular interest in .NET)
1
vote
1answer
5k views
JPA - many to many relationship of a table with a compound-key with itself
I would like to create a many to many relationship of a table (RoutePlace) with itself using JPA anotations. The singularity of the table I want to join with itself is that it has a compound-key.
...
0
votes
0answers
21 views
Advanced JPA Mapping with Compound keys - OneToMany relationship
I am using JPA 1.0 and have following tables, namely, Type, Guide and Address (names simplified for clarity and highlighted in bold) It is a scenario, where in relationships between 3 tables is built ...
0
votes
2answers
29 views
Queries on compound pk
when using compound pk, can insertion of values be the same ? I illustrate an example to you guys:
Creation of table:
Create table test
(
testno number(5) not null,
testpaper varchar(2) not null,
...
0
votes
1answer
54 views
How can I create a model with compound foreign key?
anybody knows on how to create a model with compound foreign key to another model.
e.g.
UserInfo: userId, password, key, ...
GeoInfo: id, userId, password, storeName, ...
In the above sample ...
0
votes
1answer
106 views
Joining tables with Compound Keys in JPA/Hibernate
Okay, our DB team has come up with the following structure. I cannot change it:
Report
has Reference Number (REF_NR) as its PID
plus some data about the report, report date and so on
Property
...
0
votes
1answer
352 views
Entity Framework Compound Key (Many-To-Many Relationship with a Payload)
I've got database tables like this:
A person may be a member of many teams. A team may have many members. Each person may have a position (think job title) within the team.
I've tried to set this ...
0
votes
1answer
376 views
Custom WHERE in storing JTable row in Joomla 1.5
I'm using JTable to store a record in a table. My table has 3 primary keys(pid,eid,sid). I want to store (Insert,update) a record
my code:
$row =& JTable::getInstance('mytable', 'Table');
...
0
votes
1answer
428 views
How to set cascade on SQLite database with compound primary foreign key?
I have a db that's structured with a supertype table as well as subtype tables like so:
EVENT
PatientId INTEGER,
DateTime TEXT,
EventTypeCode TEXT,
PRIMARY KEY( PatientId, DateTime, EventTypeCode )
...
0
votes
1answer
236 views
Creating table with a compound key + a foreign key as compound key
I am having a problem with creating my database in SQL Server Compact
I basically have 5 tables ( CentreDeCout, Profil, Groupe, CCProfilPivot, CCProfilGroupePivot)
CentreDeCout has NomCC as primary ...
0
votes
2answers
706 views
JPA Compound key with @EmbeddedId
In a legacy database, I have three tables: Users, Workgroups, and UsersWorkgroup. UsersWorkgroup stores what role a user has in a workgroup.
Here are the relevant code snippets:
@Entity
@Table(name = ...
0
votes
3answers
309 views
Denormalize data or multiple-column key?
I'm trying to make a judgment call in implementing a small-ish SQL Server '08 database.
I'm translating an output text file of a flat-file database from an old COBOL system to the aforementioned SQL ...