How Will You Insert And Delete With A Single Java Connection When You Have Referential Integrity?
1 Answer - Sort by: Date | Rating
When you have referential integrity, you basically have coupled tables which are consistent in a relational database. Referential integrity is enforced by the combination of a primary key (which is also known as a candidate key) and a foreign key. For referential integrity to hold, it is necessary that any field in the table which is declared a foreign key contains only those values for the primary key or the candidate key from the parent table.
You can easily delete or insert a record which contains a value which has been referred to by a foreign key in another table but this would break the referential integrity. The relational database management system is abbreviated as the RDBMS. It usually enforces referential integrity either by deleting the rows of foreign keys to maintain the integrity or by returning an error and not performing the delete function. The method which is to be used is defined by the defined by the referential integrity constraint.
You can easily delete or insert a record which contains a value which has been referred to by a foreign key in another table but this would break the referential integrity. The relational database management system is abbreviated as the RDBMS. It usually enforces referential integrity either by deleting the rows of foreign keys to maintain the integrity or by returning an error and not performing the delete function. The method which is to be used is defined by the defined by the referential integrity constraint.
0
0
- How To Get Java On My Lg 260?
- Write A Java Program To Store A Number Find If It Is Positive Or A Negative Number If Positive Print I Am The First?
- How To Update The Sim 3 Expansion?
- What Is An Attribute In Java?
- Do I Have To Write A Main Method In Every Class I Create?
- What How The Step For Make Library Management?
- In Which Process We Can Start Java?
- Define The Concept Of Java Byte Code?
- How To Run Remote Method Invocation In More Machine?
- How To Run Java Remote Method Invocation In More Machine?
- How To Make A Java Program That Will Ask The User To Input A Number And Display All The Even Number And The Sum Of All Even Numbers Based On The Inputted/ Given Numbers?
- Is A Static Variable An Instance?
- How To Compile And Run Java Package?
- What Does Literati-on Mean?
- What Is Abstract Class In Details?
- What Is Meant By Remote Method Invocation In Java?
- What Is Meant By Servlet In Java?
- What Is Latest Technologies In Java?
- Write A Program Using Do…..while Loop To Calculate And Print The First M Fibonacci Numbers?
- What Is The Difference Between Reference &instance Variable?
- Why Java Is Slow?
- What Is The Drawback Of Ms Access?
- What Is Replaced In Place Of Pointers In Java?
- What Replaces Pointers In Java?
- How Many Types We Create Object In Java?

New Comment - Comments are editable for 5 min.