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.
0
votes
0answers
5 views
passing parameter values to a subreport with cascaded parameters
Has anyone come across this problem before? I have a report that drillthrough to a subreport that have multiple cascaded parameters. When passing the parameters' value from the main report, it only ...
0
votes
1answer
21 views
Use of Cascade in ManyToOne relation
Is it appropriate to use Cascade in both sides of a ManyToOne association in Hibernate Entities? To make my question more concrete, let 's assume that someone has the following related Entities:
...
0
votes
0answers
5 views
JPA fetching nested entity without use of CascadeType.REFRESH
At this link: http://www.objectdb.com/java/jpa/entity/fields they explain:
Instead, employees is automatically populated when a Department entity is retrieved from the database.
How is this ...
2
votes
2answers
71 views
Navigation properties and cascade on delete
I am using EF5 fluent-api to try to set up relationships/constraints between several tables, and I want these relationships to include cascade on delete and I think I'm missing something simple ...
0
votes
0answers
11 views
hibernate cascade of complex object
I'm having these classes in my project:
@entity
public class User {
@Id
@GeneratedValue
private long id;
private String fullName;
private Timestamp timeCreated;
private Timestamp timeUpdated;
...
0
votes
1answer
18 views
Loading an Image into StandardListItem inside ListView BB10
I want to display a list of contacts inside a StandardListItem. The data is retrieved from sql with QArrayBytes representing the Image.
The StandardListItem accepts a title, status, description and ...
0
votes
2answers
41 views
How to force Entity Framework to map `internal` navigation properties?
Using Code First with EF 5.0 I have the followings:
internal class Entities : DbContext
{
public DbSet<User> Users { get; set; }
public DbSet<Project> Projects { get; set; }
}
// ...
0
votes
1answer
16 views
why I get an error with the trigger when I try to delete on cascade?
I have two tables in the database and I would like to delete on cascade with a trigger. I use to use a cascade deleting in the relationship, but in this case I have more tables and SQL Server does not ...
0
votes
1answer
37 views
Showing related entities when delete
I have a model with some relations mapped with NHibernate and it is working fine, for sample:
public class A
{
public int Id { get; set; }
// other properties
public ICollection<B> ...
0
votes
0answers
37 views
OpenCV traincascade parameters
I try to train an LBP cascade classifier for emotion recognition i've managed to get 650 faces positives and 1002 negatives. These are my parameters:
numPos: 650
numNeg: 1002
numStages: 20
...
0
votes
1answer
25 views
ON CASCADE DELETE on JPA2 many-to-many relationship
I have read a lot of topics regarding cascading and many-to-many associations, but I haven't been able to find an answer to my particular question.
I have a many-to-many relationship between ...
-1
votes
2answers
48 views
Catch error when QList index is out of bounds
I am developing an application for Blackberry 10 and when I try to get the element 2 from a QStringList while this list contains only 1 element, my application crashs.
I am using the following code ...
0
votes
3answers
52 views
Grails: Prevent cascading association between two domain classes with multiple relationships
Consider two domain classes; Job and Quote.
A Job has many Quotes but a Job also has an accepted quote. The accepted quote is nullable and should only be set once a particular Quote has been accepted ...
1
vote
0answers
49 views
No tables are created after setting WillCascadeOnDelete on true
We are making a project in ASP MVC4, and are using code-first. This means that our database is automaticly created from our code after running it. But i noticed that optional relationships in the ...
0
votes
1answer
25 views
ON DELETE CASCADE in this case?
I need an advice on whether ON DELETE CASCADE is suitable to use in the following table
CREATE TABLE category
(
id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(255) NOT NULL,
...
0
votes
0answers
8 views
Doctrine 2 orm:validate-schema fails because of constraint
I have a database with several one-to-many/many-to-one relationships. For example, I have table called Students, and a related table called StudentNotes. The StudentNotes table has a foreign key ...
0
votes
0answers
30 views
OpenCV : CascadeClassifier Method for different set of features
is it possible to use any type of features on the CascadeClassifier method? If so, is there any tutorial explaining how to do so?
I've created an algorithm that extracts a very large pool of features ...
0
votes
1answer
25 views
create a http communication on blackberry 10 cascade
I'm newbie on development blackberry 10 cascades. I need to use httpget to connect on file xml and get dat from it to display it on list.
There is an example can help me to make http communication or ...
0
votes
1answer
33 views
delete and update cascading doesn't affect on child table in SQLite?
I've known of using 'PRAGMA foreign_keys = ON' or including an attribute in my SQLite connection string like this:
con = "Data source = myData.sdb; foreign keys = true";
I've also made a demo to ...
0
votes
0answers
20 views
Hibernate cascade merge add list entry get id
I got a head object and I want to add an item to this head object and merge it.
Like this:
...
head.getItems().add(item);
em.merge(head);
em.flush();
...
The items are referenced with hibernate ...
0
votes
0answers
33 views
Deleting an entity with Many To One Mapping using Hibernate
I have the following UserDetails class:
@Entity
public class UserDetails {
@Id @Column(nullable = false)
private String userName;
@Column(nullable = false)
private String password;
private ...
3
votes
2answers
27 views
CSS cascade selector redundancy vs preformance
What's better for general CSS usage? I'm showing a specific example, but the question is more geared towards general application of this in any situation.
a)
table.class tbody tr td.class2
{
...
0
votes
1answer
42 views
Oracle identify if a delete will cascade
I am working on a legacy oracle database system (10g) and I do not have detailed schema information. I need to find out if deleting a particular record in a table will cause cascading deletes in other ...
0
votes
0answers
70 views
Emgu.CV.CvInvoke Error on Face Recognition code using Emgucv C#
I was trying to run the codes i have got from codeproject http://www.codeproject.com/Articles/239849/Multiple-face-detection-and-recognition-in-real-ti .The code build fine but during runtime that it ...
0
votes
1answer
36 views
cascade PERSIST during synchronization exception
I have a problem when trying to persist new entities. I'm using Eclipselink 2.4.2 as entity manager. My BaseDao class in the store method flushes and refreshes entity after persisting it as new ...
0
votes
1answer
38 views
OpenCV traincascade maxWeekCount
I am training a LBP detector with OpenCV, does anyone knows how does the maxWeakCount influence the detector? Does it make it slower or does it make it not so good in detecting?
3
votes
1answer
48 views
Toast hide behind the keyboard on BB10
I ported the android application to BB10. In application if keyboard is open at the same time if toast is display it is hide behind the keyboard on BB10 and user not able to see the toast message. In ...
1
vote
1answer
37 views
Postgres constraint on delete cascade
I have a problem when restoring a postgres database schema in other server,some of the tables dont have the same constraints when the backup is restored. The on delete cascade doesnt work well.
0
votes
0answers
34 views
On Delete Cascade in mySQL
I have 3 tables
table A : Aid (pk)
table B : Aid (fk from table A,pk), Bid (pk) . on delete cascade, on update cascade
table C : Aid (fk from table B,pk),Bid (fk from table B, pk), Cid . on delete ...
0
votes
1answer
46 views
Android On Delete Cascade not working properly
I am making android app in which i make 5 tables in one open helper class. i am facing the problem while i am having ON DELETE CASCADE in my schema. i know the concept of ON DELETE CASCADE. here i am ...
0
votes
1answer
40 views
Openjpa cascade persist sets foreign key to null
I have 2 entities: Routes and Hosts. Hosts has a FK-field route_id referencing to Routes' PK also called route_id.
I create object Routes and add Hosts objects to it's hostsCollection. Then I persist ...
0
votes
0answers
44 views
JPA: On Delete Restrict
How can I achieve "ON DELETE RESTRICT" behavior in a @OneToMany relationship?
AFAIK if I do not set CascadeType.REMOVE the children will not be deleted but the parent will still be removed. I know ...
0
votes
1answer
50 views
Fluent Nhibernate Cascade.None() results in HasOne foreign key relationship not being persisted
I'm having issues with Nhibernate persisting a HasOne Relationship for one of my entities with Cascade.None() in effect. My domain model involves 4 classes listed below.
public class Project
{
...
8
votes
4answers
197 views
MySQL ON UPDATE CASCADE not CASCADEing
Suppose i have two below table:
CREATE TABLE `post` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`text` text ,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1;
CREATE TABLE `post_path` (
...
0
votes
0answers
25 views
How to update set of sub objects on LINQ
I have DBML generated classes for User and Role tables. User can have multiple roles and tables linked by third table UserRoles.
When edit user on web form, the set of roles can be changed. The ...
1
vote
3answers
67 views
JPA: Cascade remove does not delete child
Edit: Modifying the question to better reflect the problem. Originally posted question here
I have a parent (Context) and a child (User) entity (ManyToOne relationship). Cascade 'REMOVE' on the ...
0
votes
1answer
64 views
How to handle cascading deletes on inherited tables?
I've run into a problem with ON DELETE CASCADE when using inherited tables.
I've got the following tables (model first)
Now if I want to delete an entry in Entity1.
using (var ctx = new ...
1
vote
2answers
145 views
Zend2 Doctrine2 One-To-Many uni-directional with join table, delete cascade issue
I'm having some problems with the following...
I have a table with phone numbers. I want to use the same table for both users and companies. A user can have several phone numbers and a company too. So ...
0
votes
0answers
36 views
ON DELETE CASCADE does not work
I have created two tables within a MySql database:
create table scope (
name_scope varchar(50) not null primary key,
description varchar(100)
);
create table value_scope (
id_value int ...
0
votes
1answer
45 views
Is CascadeType.MERGE required for @OneToOne?
With following decoration and conditions,
/**
* passsalt.
*/
@JoinColumn(name = "PASSSALT_ID", nullable = false)
@OneToOne(cascade = {CascadeType.PERSIST,
CascadeType.MERGE, // ...
0
votes
0answers
393 views
Cascading dropdownlist in ASP.NET MVC 2
I've been reading all the topics in here and everywhere and I can't get this to work.
I have two dl the first one displays the name of the teams and the second one should display the name of the ...
0
votes
0answers
30 views
Hibernate cascade remove with if
class Flow:
@ManyToOne(optional = false, cascade=MERGE)
private Doc doc;
@ManyToOne(optional = false)
private Batch batch;
class Doc:
public static enum Type {
IN, OUT
}
@Basic(optional = ...
0
votes
0answers
75 views
Microsoft Access 2010 add foreign key on delete cascade
I have two tables and try to add foreign key on delete cascade.
I have to do it programmatically, so I wrote this below query:
ALTER TABLE table2 ADD FOREIGN KEY (tb2Id) REFERENCES table1(tb1Id) [ON ...
0
votes
0answers
235 views
SQLplus not executing CREATE TABLE statements anymore
SET TERMOUT ON
PROMPT Building Hotel tables. Please wait.
--SET TERMOUT OFF
DROP TABLE BD;
DROP TABLE BR;
DROP TABLE D;
DROP TABLE R;
CREATE TABLE RT
(TYPE VARCHAR2(11) NOT NULL,
RATE ...
2
votes
0answers
106 views
Cascade Classifier Method
I want to use the Cascade Classifier Method to compare a found round shape (from the image set where a face has been detected) and a reference circle that I define first so that I can match those two ...
0
votes
1answer
45 views
JPA Cascade Persist Error
I have a One-to-Many relationship: A ProductCategory can contains many Product. This is the code:
@Entity
public class Product implements Serializable {
@Id
...
0
votes
1answer
262 views
Doctrine2 with Symfony2: Why does cascade persist not work on this many-to-many relationship?
In my project I got many many-to-many entities. This many-to-many relations have attributes, so i decided to split them up in A 1:n B n:1 C like it is described in this post.
So my reduced class ...
0
votes
0answers
12 views
Using a nonspecific foreign key; Cascading different rows
Let say I have two tables known as Table1(Id,name) and Table2(Id,nameClean). They share Ids(foreign key). I want to set it up so that if you change name(and not the foreign key) it will cascade and ...
1
vote
1answer
73 views
Backbone.js cascading collections and sync?
I'm trying to use as much of the OOTB sync and RESTful functionality in Backbone. I have a Web API set up for basic CRUD for my models. I have:
var SearchModel = Backbone.Model.extend({});
var ...
0
votes
0answers
131 views
How may i specified cascade in hibernate mapping for bi-directional many-to-one?
Hi i have some question about hibernate mapping and following saving operations.
I have Dealer.class which this properties:
public class Dealer extends Persistent {
private static final long ...



