Tagged Questions
The self-referential tag has no wiki summary.
7
votes
5answers
970 views
What is the best way to empty a self-referential MySQL table?
I have a self-referential MySQL table with a recursive parent_id:
CREATE TABLE `recursive` (
`id` int(11) NOT NULL auto_increment,
`parent_id` int(11) default NULL,
`name` varchar(100) NOT ...
6
votes
3answers
2k views
Python: getting a reference to a function from inside itself
If I define a function:
def f(x):
return x+3
I can later store objects as attributes of the function, like so:
f.thing="hello!"
I would like to do this from inside the code of the function ...
4
votes
3answers
340 views
has_many :through multiple has_one relationships?
I'm writing a mentorship program for our church in rails (im still farily new to rails)..
And i need to model this..
contact
has_one :father, :class_name => "Contact"
has_one :mother, :class_name ...
4
votes
1answer
537 views
Many-to-many self-referential relationship in sqlalchemy
I'm trying to make a self-referential many-to-many relationship (it means that Line can have many parent lines and many child lines) in sqlalchemy like this:
Base = declarative_base()
class ...
4
votes
8answers
418 views
Self referential type
What type T makes the following code compilable?
T f(){ return &f; }
I'd prefer a C answer, but I marked the question as C and C++ in case there is only an answer using templates.
3
votes
1answer
90 views
Ruby on Rails: Retrieving a friendship given two users
I have seen the railscast on self-referential relationships here: http://railscasts.com/episodes/163-self-referential-association
I have built upon this in that I've included a 'status' field on ...
3
votes
1answer
463 views
How do I implement a 'social' aspect with mongoid
I am attempting to create a friend network on a site I am making. I am using Mongoid. How do I instantiate friends?
I assume that Users needs to have a relational association with multiple other ...
2
votes
2answers
266 views
Help with self-referencing model & view in Rails 3
I have a simple Client table (or model) where a Client can have a Parent Client (only one, or none). I modeled it this way:
class Client < ActiveRecord::Base
belongs_to :parent, :class_name ...
2
votes
4answers
475 views
Self referential table and recursive SQL function
I have a category table with:
categoryID
parentCategoryID
categoryName
and an items table with:
itemID
categoryID
itemName
I am using MySQL. i want to write a query that will return a count of ...
2
votes
5answers
325 views
Mysql Query Incorporating Self Referential Join
Say I have four tables:
------------- features --------------
id: int
name: varchar
-------------------------------------
-------- feature_categories ---------
feature_id: int
category_id: int
...
2
votes
2answers
182 views
Recursive calls to database in perl
I know there's an easy way of doing this, but my recursion abilities are out of practice. Given a database table that has three fields:
id
label
child_id
I should be able to put together a ...
2
votes
2answers
733 views
has_many through self referential association
I want to (as an example) create a has_many association to all posts by friends of a person, something like has_many :remote_posts to give me something like person > friends > person > ...
1
vote
3answers
61 views
Need a regular expression to match a dynamically-determined repeat count
I need a ruby regexp pattern that matches a string containing a letter (for simplicity say 'a') n times and then n at the end.
For example, it should match "aaa3", "aaaa4" etc but not "a2" or "aaa1", ...
1
vote
0answers
84 views
Rails: create multiple records of a self-referencing model from a single form
I have a self-referencing sales model. A sale object can represent an "independent" product sale, sale of a product set or a sale of a product within a set:
create_table :sales do |t|
t.belongs_to ...
1
vote
3answers
134 views
Rails Self Referential has_many :through - I can't figure out what I'm doing wrong, but it isn't right :)
I'm trying to set up a self-referential relationship, as described in this great video - http://railscasts.com/episodes/163-self-referential-association - and it's mostly working, but not entirely ...
1
vote
1answer
81 views
Self-referential find in controller count relations
I'm having real trouble pulling out a set of records that are self-referentially related to a user in order to show these on a user's 'show' page.
Here's the idea:
Users (current_user) rate the ...
1
vote
2answers
103 views
Class method problem with bidirectional self-referential associations
I'm trying to create an app where users ('current_user') rate the compatibility between two other users ('user1' and 'user2'). They can rate compatibility either positively or negatively: rating two ...
1
vote
1answer
93 views
What's the best way to destroy both sides of a self-referential association?
In my project, I have a self-referential association.
I have a User model:
class User < ActiveRecord::Base
has_many :relationships, :dependent => :destroy
has_many :peers, :through => ...
1
vote
1answer
655 views
Mongoid self-referencial join
I am currently working on a small Rails 3 app to help track secret-santas at work. I am all but done and completely stumped trying to sort out this last problem.
I have a Participant mongoid ...
1
vote
0answers
170 views
rails rendering actions twice for model with empty self-referential association
I am pretty baffled by this one. I doubt anyone can tell me right off the bat what the issue is, but any answers suggesting ways of debugging and investigating this would be much appreciated -- I've ...
1
vote
1answer
91 views
Validating a self-referential association doesn't link back to the original instance in rails
I have a many-to-many model, following the example in this great railscast
My model links authors to each other. I'd like to validate that an author cannot friend himself. I know I can handle this at ...
1
vote
2answers
202 views
Getting parental status from a self-referencing table
Let's say you have the following table:
items(item_id, item_parent)
... and it is a self-referencing table as item_parent refers to item_id.
What MySQL supported SQL query would you use to SELECT ...
1
vote
1answer
515 views
Self-referential association in Rails 2.3
I have model called test, and test can have many tests, and should be able to have a reference to it's parent test if it exists. EG
test <-- parent doesn't exist
test
test
test
test
test
...
1
vote
5answers
918 views
Best practice: Self-referential scripts on a web site
On the advice of a more experienced developer, I have always coded my web pages that require user input (form processing, database administration, etc.) as self-referential pages. For PHP pages, I set ...
0
votes
0answers
75 views
rails 3: self referential many_to_many through multiple select form field
I have a rails 3 application where i stumble upon a problem, which i could not
seem to solve with sheer "try and error". The app has a Model called Item.
An Item has a self-referential relation wich ...
0
votes
0answers
112 views
Calling recursive method on a self-referential (hmt) relationship causes model to stop working
When calling successors_all inside a lambda block, the model stops working and I can't access successors anymore. On the contrary, if I call predecessors_all nothing stops working and the behavior is ...
0
votes
1answer
247 views
How to model family relationships in rails 3?
I'm working on a contact database in rails 3..
One thing thats really frustrating is how ugly the family relationship code is..
Is there a clean way of doing this in rails?
Basically all contacts ...
0
votes
1answer
92 views
SQLAlchemy Self-referencing Table Cannot Have 0 as Primary Index?
I encountered a very strange problem with SQLAlchemy. I have a model that is self-referencing (adjacency list relationship). I simply copied the model (Node) from the SQLAlchemy tutorial. Here is the ...
0
votes
2answers
269 views
Core Data: Self referencing table
I have an Entity in my Core Data model that contains a reference to itself. i.e. A Page can have a child collection of pages. When compiling i get the warning:
"Page.pages -- to-many relationship ...
0
votes
2answers
125 views
How to prevent deep recursive queries with entities consisting of entities of the same type? [Cool example inside]
No worries! It looks more complex than it actually is! Just get down to the drinks!
TLDR-version: How to efficiently query and update entities having relationships to other entities?
Here's an ...
0
votes
2answers
92 views
I'm playing around with different design patterns in Javascript. This factory has got me confused
Hey Team,
I'm playing around with different JS design patterns, and im trying to modify some samples I've seen out there. I saw an example of a xhr factory, that had several nested try/catch ...
0
votes
1answer
113 views
Is it Possible to Use Constraints on Hierarchical Data in a Self-Referential Table?
Suppose you have the following table, intended to represent hierarchical data:
+--------+-------------+
| Field | Type |
+--------+-------------+
| id | int(10) |
| parent | int(10) ...
0
votes
1answer
276 views
Bidirectional self referential associations
Taking Ryan Bates' asciicast as an example:
http://asciicasts.com/episodes/163-self-referential-association
He ends with two associations of User
:friends
:inverse_friends
Given that a user would ...
0
votes
1answer
285 views
Model self referential collections in Rails
I have written an application for an online clothing store in Rails 2.3.5. I want to show related Products when a customer views the Product Detail page.
For example, if the customer views the ...
0
votes
1answer
720 views
Edit of self referencing HABTM in cakephp works, sometimes
I'm using a self referencing HABTM model with Participants. You sign up for an event and when you log in to your reservation/profile you see a list of other participants and you can choose to add ...
0
votes
1answer
634 views
Core Data: migrating entities with self-referential properties
My Core Data model contains an entity, Shape, that has two self-referential relationships, which means four properties. One pair is a one-to-many relationship (Shape.containedBy <->> ...
0
votes
1answer
309 views
c# - what collection type is recommended for self-referential many-to-many model?
What type of collection would be best in C# to implement the following requirements do you think?
Need to model web file (e.g. class = "webfile"), so one class only preferred
Model parent & ...
0
votes
1answer
362 views
Cocoa core data self referential interface builder question
I'm having trouble understanding how to get the following working in interface builder.
I've created a Core Data model class "Person" that has a number of attributes (first name, surname, etc.) and a ...
0
votes
2answers
785 views
SQL table self-reference query vs. unique constraints using checksum
I would like to better understand the differences for checking uniqueness in a record before an INSERT between using CHECKSUM (with unique constraints) versus self-referencing table statement like the ...