Tagged Questions

0
votes
1answer
39 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 …
1
vote
1answer
47 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 …
0
votes
2answers
114 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 > …
0
votes
1answer
61 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
79 views

c# - what collection type is recommended for self-referential many-to-many model?

Hi, 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
70 views

Cocoa core data self referential interface builder question

Hi there, 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, …
0
votes
2answers
158 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 …
0
votes
3answers
254 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 …
6
votes
5answers
341 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 …
1
vote
5answers
443 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 …