Cascade refers to a table-definition keyword in relational databases; it instructs the query engine to take a certain action (delete, update), when a primary key is modified, on tables linked by a foreign key.

learn more… | top users | synonyms

0
votes
2answers
1k views

OpenCV 2.3.0 cascade classifier

I am trying to make a face detection software using OpenCV 2.3.0. While OpenCV 2.4 has the face recognizer class 2.3.0 is devoid of this feature. I checked the documentation and is specifies that the ...
0
votes
0answers
376 views

MySQL, Foreign Keys, on Update / Delete Cascade, Multiple Columns

I am currently working on a project with MySQL and have some problems with the integrity. The following tables model this: an entity "Contact" can either be an "Organization" or a "Person". It also ...
0
votes
2answers
369 views

CSS cascading with examples

Please can some one give an example describing cascading as meant in CSS and when are they useful ? I have seen answers describing cascading and also difference between cascading and inheritance but ...
2
votes
1answer
393 views

Doctrine 2.1 - Relation Lost After ManyToMany Cascade Merge - Symfony2

After merging an entity that has related entities with relations set to cascade both persist and merge operations the relations are lost! Here are the entities: class Event implements ...
0
votes
0answers
248 views

What is an good Haar Cascade dataset/file to use for face detection

I'm using an AS3 port of OpenCV in a project to detect a users face in a webcam (a flash web application) The source code is open (http://www.quasimondo.com/archives/000687.php ) and works very ...
1
vote
0answers
79 views

hibernate cascade between two schemas

we have an application with links between entities on differents schemas: Entity A (from schema 1) --@OneToMany(cascade=MERGE)--> Entity B (from schema 2). Sometimes we have a problem with ...
1
vote
0answers
332 views

object references an unsaved transient instance - despite Cascade

I am getting a TransientObjectException org.hibernate.TransientObjectException: object references an unsaved transient instance - save the transient instance before flushing: EntityB.entityA ...
0
votes
1answer
115 views

Remove of entity not triggered when another managed entity holds a reference to it with CascadeType.PERSIST

My domain model: a uni-directional many-to-one mapping between payment and account. @Inheritance(strategy = InheritanceType.JOINED) @DiscriminatorColumn(name = "ACCOUNT_TYPE") public abstract class ...
2
votes
1answer
162 views

Object level cascading permission in Django

Projects such as Django-guardian and django-permissions enables you to have object level permissions. However, if two objects are related to each other by a parent-child relationship, is there any way ...
0
votes
0answers
208 views

MySQL Table Summary Cascade

I'm designing a statistics tracking system for a sales organization that manages 300+ remote sales locations around the world. The system receives daily reports on sales figures (raw dollar values, ...
0
votes
1answer
534 views

JPA Entity relationship: Cascade on delete

I am using spring, JPA with Hibernate. I got the following entities: @Entity @Table(name = "Supplier") public class Supplier { @Id @Column(name = "Supplier_ID", nullable = false) private ...
0
votes
0answers
165 views

How to delete using cascade on mvc?

How can i delete using cascade reference on mvc so i can delete two tables? public ActionResult Delete(int appointmentid) { Appointment appointment = _database.Appointment.Find(appointmentid); ...
0
votes
1answer
374 views

Rails3 SQLite3 DROP TABLE CASCADE error

I have a project on Rails 3.0.2. Its rather big and working well with MySQL database. But when I try to run it with SQLite database there is an error during migrations: SQLite3::SQLException: near ...
0
votes
1answer
82 views

Cascade Delete from DB, by some params(“WHERE value=…”), using hibernate

In Bean class there is this annotation: class User { @OneToMany(targetEntity = Feedback.class,mappedBy = "user",cascade = CascadeType.ALL,fetch = FetchType.LAZY) private ...
0
votes
1answer
67 views

Am not able to see foreign keys for any table in my mysql database

New to mysql and have been told by many, that creating foreign keys in mysql is not necessary? how will table relationships be consistent and cascading would be done then? Where can i find info about ...
0
votes
0answers
157 views

Why unit test works with hibernate session persist but not working with saveOrUpdate?

I have a situation in which my JUnit test have a some strange behaviour. Help me to understand what is going on here. I have a OneToMany relation between Stock and Items. @Entity @Table(name = ...
0
votes
0answers
2k views

JPA cascade type

i cannot understand how the JPA cascade type works, i have a Judgement class which has a ManyToOne relationship with another Class User, i have user created first and stored in user table, only when ...
2
votes
1answer
381 views

On delete cascade android 2.2

I have 2 tables: Table 1- create table table1(_id integer primary key, content text not null ); Table 2- create table table2(_id integer primary key, id_parent integer, content text not null , ...
0
votes
1answer
419 views

Hibernate Annotation Bidirectional relationship cascade delete with non null foreign key

When performing a delete on an Order(the parent), hibernate is trying to cascade delete the children. Instead of just deleting the children first, it is attempting to null out the foreign keys, then ...
3
votes
1answer
653 views

Will JPA try to cascade persist and alredy persistent entity?

I'm new to java and JPA. I have the following question: Will JPA try to cascade persist on an entity that is already persistent (and non-detached)? To make things clear, here's my situation: I want ...
0
votes
2answers
137 views

What do you think about cascading deletions on mysql tables?

This question is in the title ! The database i'm using to store datas from my (production) website contains a lot of ON DELETE CASCADE. I just would know if it's a good thing or if it's a better way ...
0
votes
2answers
638 views

Assignment = operator overloading

Please help to complete this execution of an assignment overloading function. Here is the instruction: Assignment operator (=) which will copy the source string into the destination string. Note ...
9
votes
1answer
4k views

How to add “on delete cascade” constraints?

In PostgreSQL 8.4.9 is it please possible to add "on delete cascades" to the both foreign keys in the following table w/o dropping the table? # \d pref_scores Table "public.pref_scores" ...
0
votes
0answers
40 views

CaseCade Persit inserts with 0 instead of generated ID

I have two entities called entityA and entityB as below, EntityB @Entity @Table(name = "entityB") public class EntityB extends BaseObject implements Serializable { private static final long ...
2
votes
1answer
1k views

ERROR 1451: Cannot delete or update a parent row: a foreign key constraint fails

CREATE TABLE `categories` ( `idcategories` INT NOT NULL AUTO_INCREMENT , `idparent` INT NULL , `description` VARCHAR(45) NULL , PRIMARY KEY (`idcategories`) ); ALTER TABLE `categories` ...
0
votes
1answer
1k views

SSRS 2008 R2 chained parameters

I have a report with three parameters: A country combo box, a start date and end date (of the fiscal year). I want the start date and end date to be updated depending of the country combo box ...
1
vote
1answer
789 views

CSS: disabling select on container, enabling on child (not working in Firefox)

So the following works in Chrome, but not FireFox: * { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: ...
10
votes
3answers
525 views

INSTEAD OF Triggers and CASCADE paths

Let's say I have 3 tables in a hierarchy: TableA -> TableB -> TableC TableC has a foreign key relationship with TableB, and TableB has a foreign key relationship with TableA. If i delete a ...
1
vote
0answers
107 views

NHibernate delete cascade without mapping the collection

This is somewhat strange question, but is there some way to make NHibernate delete all children on deleting parent, if the parent doesn't have reference to his children (by reference I mean concrete ...
6
votes
2answers
714 views

Overriding CSS properties that don't have default values

Is it possible in CSS to override a property if that property doesn't have a default value? For example, say your primary stylesheet defines a border for a particular element: #element { border: ...
0
votes
1answer
320 views

FluentNHibernate - cascade inserting

I have the following code: // setup var sessionFactory = SessionManager.CreateSessionFactory(true); // business using (var session = sessionFactory.OpenSession()) { using (var tran = ...
1
vote
1answer
487 views

orphan removal constraint violation

I am using EclipseLink and have the following entity classes (I tried to simplify the scenario as much as I could, but after any further simplification, the error does not occur): @Entity public ...
0
votes
1answer
191 views

The parentId do not set to the child entity automatically by cascade

In the entity Invoice, I have a set of DetailInvoice with cascade is ALL @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY, mappedBy = "invoice") public Set<DetailInvoice> ...
1
vote
0answers
121 views

Delete one side of one-to-one relationship and null out its reference from the other side

I have two entities which can be related, but they can both exist without having each-other as well. In essence they are both 1 to 0..1. Entity B can have an Entity A created from it - when this is ...
0
votes
1answer
107 views

On delete method

I have a method which passes ownership of a piece of information to a parent user when they are deleted, but I currently invoke this prior to @user.destroy in the controller. Is there any way to run ...
0
votes
1answer
72 views

How to support restoring complex dependencies in a rdb

I am having some trouble formulating a solution for this foreseen situation. TableA has a FK to TableB. TableC has a FK to TableA. TableC has a FK to TableD. TableA ------ taId tbId TableB ------ ...
2
votes
1answer
67 views

Using QWorkspace cascade

I'm trying to overload the QWorkspace class with my own cascade and tile definitions, but when I try to use the .move function, it moves the interior widget relative to the subwindow as opposed to ...
0
votes
1answer
144 views

soft delete common attributes with regards to cascade recovery

What type of fields are generally used to accompany soft delete? Any of these, any others? bool IsDeleted // nice because the default value is 0 (no) just in case date DateDeleted // is this a common ...
0
votes
1answer
575 views

mySQL Restrict Cascade No Action settings

What is the best constraint to use on a forum table where users leave comments? Assuming some users will be deleted at a later stage. if i delete a user who has commented, what happens to the users ...
1
vote
1answer
199 views

Removing an object in Hibernate/JPA and nullify children automatic

Is it possible with JPA to automatically nullify children when deleting the parent? I have a Model Class Device, with sync statistics attached to it. When I remove the device I still want to keep the ...
3
votes
2answers
787 views

EclipseLink: Problems with cascade delete doing update instead

Oracle using EclipseLink: I have a one to many relationship between a parent (workflow) and children (stage). In the database i have a delete constraint such that deletes on workflow delete stage. ...
3
votes
1answer
555 views

Setting hibernate 'default-cascade' property globally

I'm using Spring and Hibernate with annotations. I want to set the default-cascade property for all classes like this in my mapping file: <?xml version="1.0" encoding="ISO-8859-1"?> ...
0
votes
1answer
409 views

Hibernate mapping: delete-orphan cascade

Question about hibernate and delete-orphan cascade. Suppose I have some Parent class with collection of Child inside it. In hibernate mapping for Parent class for one-to-many relation I set cascade ...
0
votes
1answer
93 views

EF Cascade delete from two separate tables

I have the following two entities: public class Field { public int FieldID { get; set; } public String Name { get; set; } public int LocationID { get; set; } public virtual ...
0
votes
1answer
122 views

Multiple linked 1-1 relations don't sync PKs as expected

I tried searching the SO, but all results I've found seem to deal with updating PK of entities that have already been persisted to the DB. My case is different. I have 3 tables in a database with ...
0
votes
1answer
430 views

JPA persist Object with cascase relation and then delete it (hibernate)

I have the following bidirectional 1:n relationship between A user entity and a job entity: User class: ... @OneToMany(mappedBy = "user",cascade={CascadeType.PERSIST}) public ...
0
votes
1answer
567 views

Eclipselink OneToMany Merge Deletes Relations

I have a parent object Compound with a one-to-many relationship to an object Submission. I have set up the relationship as follows: @Entity public class Compound implements Serializable { @Id ...
0
votes
1answer
117 views

Cascading delete removes unintended records

I typically develop in MS Access and occasionally connect to a MySQL back end. I have a MySQL back end that isn't cascading deletes as I'd expect when I delete records. I'm wondering if it's because ...
0
votes
1answer
386 views

JPA: implicit cascades for relationships mapped as @ManyToMany @JoinTable?

I have the following mapping: @Entity @Table(name = "Prequalifications") public class Prequalification implements Serializable { ... @ManyToMany @JoinTable(name = "Partnerships", ...
1
vote
1answer
490 views

Hibernate:one-to-one related entity inserted into DB instead of to be updated

@ManagedBean @SessionScoped public class User { private Person person; ... user.hbm.xml <hibernate-mapping> <class name="entry.User" table="users"> <id name="usaa"> ...

1 3 4 5 6 7 11