The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
86 views

Laravel 4 hasMany does not work

I have an Eloquent model named Auction and it has cars in a one-to-many relationship. This is the function for retrieving the cars: public function cars() { return $this->hasMany('Car'); } ...
2
votes
2answers
20 views

In MySQL what's the correct way to map a “belongs-to” relationship when an item could belong to two or more types of item?

If this is standard knowledge, I apologize. Part of my problem is I'm not even sure what language to use to search. If I have the tables Event, Department, Client and I want to denote a one-to-many ...
0
votes
1answer
44 views

Testing for relation between Eloquent objects (Laravel 4)

In Laravel 4, is there a method that allows you to test for a relationship between two Eloquent objects without knowing the type of relationship beforehand? For example, a user model would have a 1:1 ...
0
votes
1answer
19 views

Cypher - Referencing a Node from a property on a reference

Given a graph where a property on a Relationship is a key to a Node, how can I return the node referenced by the Relationship property? So, given the graph: Node(user1 { type: "user", uid: "u1", ...
0
votes
0answers
11 views

getting instagram error “OAuthPermissionsException”

I am facing a really big problem with the Instagram API. The default given permission on the Instagram API is basic which is read-only, and for getting read/write permissions you need to pass the ...
0
votes
1answer
26 views

Symfony2 Doctrine get random product from a category

I have the following database scheme: table 'products' id category_id and of course a category table, just with an id. The data look something like that: Products -------------------- | id | ...
0
votes
0answers
7 views

Entity factorization and relationship in ER modeling

Please consider this case: An entity called "MeasuredData" has the following attributes : m_code m_start_time m_valeur unit conversion_coeffcient duration(secondes) calcul_type This entity can ...
0
votes
1answer
59 views

Laravel eloquent table structure

I am quite new to the Laravel and Eloquent world and I'm loving it so far, but I am having trouble understating how to structure my tables and models in order for me to be able to CRUD my data with ...
0
votes
0answers
33 views

setPropertiesToFetch: and setReturnsObjectsAsFaults:NO with relationships

The problem is that even by using setPropertiesToFetch: and setReturnsObjectsAsFaults:NO setting a relationship will cause 2 additional "select ..." on my sqlite3 database. I have a task and a job ...
0
votes
2answers
65 views

How can I implement blocking using Django-relationships?

I've been using django-relationships to allow users to follow each other. If Bob follows Joe. Bob will be able to see all of Joe's photos. However if Bob blocks John, John will not be Bob's photos. ...
1
vote
2answers
60 views

cakephp and mongodb - relationships

i have a question on mongodb, model cakephp and relationships. I'd create the following relations: User -> hasMany -> City City -> belongsTo -> User In MongoDB, I have two tables: users ...
0
votes
0answers
32 views

EER to Relational Model - Disjoint subclass and relationships between subclass entities

I've tried searching for this but I failed to find something. That could be a problem with my search strategy, or this could just be a simple question with a simple answer. I've drafted an EER model ...
0
votes
2answers
47 views

How to create relationships in Orient-DB?

I having a stuck with relationships in Orient-DB. My problem is i dont know how to create relationships in orient-DB? I was read document and see it have command CREATE LINK. but i dont know how do ...
0
votes
2answers
97 views

Laravel Relationships

I've been looking over relationships in Laravel 4 in the documentation and I'm trying to work out the following. I have a table in my database called 'events'. This table has various fields that ...
1
vote
2answers
56 views

CakePHP 2.4.2: Contain Not Working as Expected

I have a model, Comment, that belongsto Module, Photo, Review, Article, and User. In turn, each of those models havemany Comment. User belongsto Avatar and Avatar hasmany User In the code below I ...
2
votes
1answer
52 views

Rails Relationship Between Two Models

Is there a way to determine the relationship method Rails creates between two models dynamically? For example: unknown_method_i_wish_existed(class_name_1, class_name_2) # awesome logic # returns ...
0
votes
1answer
51 views

Core Data Fetch Save relationship while inserting entity (simultaneously)

First question here and I've tried a bunch of stuff and can't figure it out. Core Data with 2 entities with to-many relationship both ways A<<---->>B A entity has name as an attribute, ...
0
votes
2answers
37 views

MS Access - Basic Relationship Error

I am trying to create a simple database of a theoretical car rental company. The following picture shows the relationships I currently have. However, when I try to assign more than one car to a ...
0
votes
3answers
58 views

Using ActiveRecord relationships to contain multiple instances of an object per row

I am trying to figure out how to use ActiveRecord relationships to relate a model that can contain multiple instances of another model within one row. For example, having has_many :dogs in one model, ...
0
votes
1answer
46 views

Zend DbTable get rows from referenced table from other module

I am currently working an a Zend framework 1.12 based project. I use different modules to keep things separated as good as possible. My data is stored in a mysql database so I set up some db table ...
0
votes
0answers
66 views

You cannot add or change a record because a related record is required vb.net

I know this question has been asked numerous times, but the situations people had were slightly different each time, or lacked enough detail, or the explanation for the problem lacked specific detail ...
0
votes
0answers
70 views

MySQL LIKE search with CakePHP

I'm trying to implement simple search functionality to my CakePHP application. I want users to be able to search based on a members first name, last name and the skills the member has. My models are ...
-2
votes
2answers
32 views

displaying all table data mysql [closed]

I have 6 tables which all contain student information. table names: student details, doctor details, admission details, previous_school, fathers details, mothers details. each of these tables ...
0
votes
1answer
33 views

access database relationships

I am using access 2007. I made a database called holiday which has 3 tables namely: client - this has all the client information flight - this stores flight information cruise - this stores cruiser ...
1
vote
2answers
124 views

Show a unary relationship hierarchy in one field in MS SQL

I have a table called "Services" which contains a ServiceID, a ParentID and a Description, where the ParentID is the ServiceID of another record. The data is setup in such a way that it forms a ...
0
votes
1answer
92 views

Checklist database design. One to many relationship and storing user information

I am basically designing a web checklist. The process is as follows: User logs in, selects the "Job Name" for a list, clicks on it, goes to next page, selects "Procedure list" from a list, clicks on ...
0
votes
1answer
43 views

Relationships in JPA. How does they internally work?

For example, these classes: public class Boss{ ... @OneToMany(mappedBy="boss") Set<Employee> employees; } public class Employee{ @ManyToOne Boss boss; ... } There is ...
-2
votes
2answers
39 views

Java Has-a relationship with List<ObjectA>

So im trying to get my head round the has-a relationship between classes and Id like some help with one instance: public class Test{ List<ObjectA> list; } Is this Test has-a List or Test ...
0
votes
1answer
35 views

Trying to avoid adding uncessary user_id field into rails db schema

So I have 3 models: Order, Item, and User. User has_many :items Order has_many :items Item belongs_to :user belongs_to :order My problem is: I want to also associate the User and Order models ...
0
votes
1answer
105 views

symfony2 entity oneToMany and methods

Hi i had fully successfully setted my entity onetoMany and ManyToOne i generated setters and getters and in user entity it created this method: user entity: /** * ...
0
votes
1answer
70 views

Multiple lithium models relationships

Iยดm actually on a project and working with lithium framework for PHP. Iยดm using multiple databases (MongoDB and MySQL) and on the MySQL database I have lots of many to many relations between my ...
5
votes
1answer
71 views

Neo4J relationships with time constraints

I have relationships between nodes which are only valid for a specific time. Simple example: Person P lived at Address A from time t1 to time t2. I can put a validFrom and a validUntil property on the ...
1
vote
2answers
50 views

Rails: Confirming two objects were saved at the same time?

When a user is created on my site I want a User.new instance to execute but I also need to make a Alias.new object too. Users have many Aliases. However, I also need to validate that there are no ...
0
votes
0answers
30 views

Polymorphic or not

Read updates at bottom! I think I figured it out and thought I would share just in case someone wants to know this info. I'm setting up a website that has quite a bit going on. It is a festival site ...
0
votes
0answers
149 views

microsoft visual studio 2010 entity relationship cardinality

First I click and drag a relationship to the sheet where the entity boxes are. Now I have trouble setting the cardinality of each ends. It seems like I can only set one end of the relationship line ...
1
vote
1answer
39 views

Core Data Relationships after entities are filled up with data

I have two entities Team & TeamMembers which are initially filled with data from two json files. So there is no connection between those entities at the moment. Is it possible to make ...
0
votes
0answers
28 views

Drupal, filter users and contents in view's

I'm creating a social calendar site using drupal for a school project and i have ran into some problems. I'm using views to create pages of filtered content, users, friends, events of one user, public ...
0
votes
2answers
48 views

Can't Redirect to User Profile After Follow

I'm using the acts_as_follower gem. I'm also using Devise for my user model and instead of a format like users/:id, I've allowed users to have username URLs. I'm working on allowing users to follow ...
0
votes
1answer
39 views

how to create relationships many to many from array of users

I get a couple of user objects in @users. and i have a task object in params[:task] Now i want to save the taskobject and add relationships between all @users and that task.... @users = ...
0
votes
0answers
96 views

Restkit nested array mapping fault

I am trying to map following structure: Plan.json: { "id" : "1", "floors" : [ { "floor" : "1", "constrains" : { "southWest": { "latitude": ...
0
votes
0answers
34 views

How to find relationships of tables in access database

I have a access database in which there are different tables linked by primary keys. The relationship design is not present which makes it difficult for me because I have to check every tables and ...
1
vote
1answer
181 views

How to rollback relationship changes in EmberData

I have two models with parent-child relationship: training and exercise: App.Training = DS.Model.extend({ exercises: DS.hasMany('App.Exercise') }) App.Exercise = DS.Model.extend({ training: ...
0
votes
2answers
37 views

Rails Format Collection_Select Based on two relationships

I'm trying to figure out how to construct a collection_select to include two relationships. Here are my models: class Country < ActiveRecord::Base has_many :companies, :dependent => :destroy ...
0
votes
0answers
43 views

Use a combobox to determine which row data is entered in a table

I'm a very green access user and am designing a database to track inspections performed. My current setup includes the following: frmInspections = A form to input individual inspections performed ...
2
votes
3answers
70 views

reading the association relationship

I read the illustrated relationship as:Class A associated with class B So,what is the meaning of : 1) +class B at the end of association 2)0..1 Now,how can I read the relationship?
1
vote
1answer
70 views

has_many through with :class_name

I have the following: belongs_to :type, :class_name => :activity_type belongs_to :activity_type # needed for has_one :through? has_one :category, :through => :activity_type, :class_name => ...
0
votes
0answers
93 views

Two DataGridViews, two TableAdapters, and concurrent saving

Building a small project and need some help. I have a VB.NET application connected to an Access database. On a single form, I have two DataGridView controls. The first DGV takes care of one table in ...
0
votes
1answer
58 views

Rails: has many relationship - determine which related object from within method

I have two classes with the following relationships/methods: class Bar has_many :foos def bar_method #puts the specific foo that called it end end class Foo belongs_to :bar def ...
0
votes
1answer
32 views

EF : related entities are set as INSERT instead of being only referenced to the added entity

I tried to find an answer through the related questions I got but I didn't see the same situation I have now. I a beginner with this framework. The thing is that in the DB the TopicFeedbackType is ...
1
vote
1answer
127 views

Laravel adding/finding relationships for relationships

How to find relationships for relationships with Eloquent ORM? Currently I have something like this. Simple relationship. I can find Image and it's photographer. Now I need to do something more ...

1 2 3 4 5 6