0
votes
1answer
20 views
How to model parent to child pair in MySQL (SQL)
I have a data model that includes element types Stage, Actor, and Form. Logically, Stages can be assigned pairs of ( Form <---> Actor ) which can be duplicated many times (i.e. …
1
vote
1answer
18 views
wordpressL How to array the child categories without any html tags?
Hello,
I am using a category called 'blogs'. Under that category I have many authors. Each author gets a category for himself.
In the 'blogs' template I want to display nicely a …
0
votes
0answers
14 views
TSQL Cascade delete for child records?
I have a parent/child table (simple tree) table structure (ID, ParentID), where I want to delete (and get the ID of) all children for a given parent ID - similar to this post http: …
0
votes
8answers
63 views
Require a method in parent class to be called in PHP
As the title states, I'm trying to make a method in a parent class required. Although, I suppose it could be any class. For instance:
class Parent
{
funtion foo ()
…
0
votes
0answers
4 views
Making relations before save
Hi. I´m using subsonic 3. I´m need pass a parent object with his childs to a custom method before they are persisted , like this:
Public Function ValidateParent(parent as Parent …
0
votes
0answers
8 views
XML and Inserting into Parent Child tables with Related Lookup Tables
The FuelPathwayCode and PhysicalPathwayCode go into Parent table and transaction-item elements goes into the Child table. Parent table has a primary key and the child table has th …
1
vote
1answer
29 views
MS Access. ADO recordset for subform. Child relationship set up programatically. Won’t automatically fill in field.
I have a form/subform for inputting data into an ado table. The main form's recordset is a local table of Widgets and information about the widgets (WidgetID, WidgetName, size, co …
0
votes
0answers
8 views
Example using OpenXML with Parent Child Relationship and Associated Lookup Tables
I have an XML document that is loaded into a column of a table of the XML data type. Is there any good examples showing how to insert using a store procedure and OpenXML into a par …
1
vote
1answer
22 views
Querying Parent-child Relationships Efficiently
Assuming you have the following database table:
create table Names (
Id INT IDENTITY NOT NULL,
Name NVARCHAR(100) not null,
ParentNameId INT null,
primary key (Id)
…
0
votes
1answer
20 views
XSD Parent Child Relationships
I have an XSD that I created. A Transaction Header can one or more Transaction-Items. This XSD will only allow ONE Transaction Header and multiple Transaction-Items in an XML fil …
1
vote
1answer
23 views
AS3 - Child moves parent using startDrag
I have a MovieClip instance which can be moved around the stage using startDrag() and stopDrag(). The instance also has some child MovieClips using addChild(). The parent moves the …
0
votes
1answer
168 views
Parent-Child Database (MS ACCESS)
I'm trying to build a database for a hospital program. I have two tables that are related in a parent-child relationship. I have a form to add new records (records that dont alre …
-3
votes
1answer
111 views
Help with C program(gcc) in Linux
Hi... I have a project for my college but unfortunately, I struggle in programming, apart from simple C programs. Anyway, the way I see it, I think the code I need should be around …
0
votes
0answers
45 views
OLAP: Many-to-many relationship between products and parent-child hierarchy of categories
Hello.
I need a help with creating OLAP cube which allows to analyse many-to-many relationship between products and parent-child hierarchy of categories.
I have next relational st …
0
votes
1answer
78 views
One-to-Many Unidirectional Parent-Child ID Cascade Save
When trying to save an ID from my parent class into a child class, I keep getting the error
"ERROR - Field 'parent_id' doesn't have a default value"
I have tried all types of mapp …
