Difference between revisions of "Object-relational impedance mismatch"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(Created page with "The '''object-relational impedance mismatch''' is a set of conceptual and technical difficulties that are often encountered when a relational database management system (R...")
 
 
Line 1: Line 1:
 
The '''object-relational impedance mismatch''' is a set of conceptual and technical difficulties that are often encountered when a [[relational database management system]] (RDBMS) is being served by an application program (or multiple application programs) written in an [[object-oriented programming]] language or style, particularly because objects or class definitions must be mapped to database tables defined by relational schemata.
 
The '''object-relational impedance mismatch''' is a set of conceptual and technical difficulties that are often encountered when a [[relational database management system]] (RDBMS) is being served by an application program (or multiple application programs) written in an [[object-oriented programming]] language or style, particularly because objects or class definitions must be mapped to database tables defined by relational schemata.
  
The term object-relational impedance mismatch is derived from the electrical engineering term impedance matching.
+
The term object-relational impedance mismatch is derived from the [[electrical engineering]] term impedance matching.
 +
 
 +
Fundamentally, objects (instances) reference one another and therefore form a graph in the mathematical sense (a network including loops and cycles). Relational schemas are, in contrast, tabular and based on the Relational algebra which defines linked heterogenous tuples (groupings of data fields into a "row" with different types for each field).
 +
 
 +
Converting linked tabular rows to graph structures is hard, and even described as the [http://blogs.tedneward.com/post/the-vietnam-of-computer-science/ Vietnam of Computer Science].
  
 
== See also ==
 
== See also ==

Latest revision as of 06:02, 24 August 2016

The object-relational impedance mismatch is a set of conceptual and technical difficulties that are often encountered when a relational database management system (RDBMS) is being served by an application program (or multiple application programs) written in an object-oriented programming language or style, particularly because objects or class definitions must be mapped to database tables defined by relational schemata.

The term object-relational impedance mismatch is derived from the electrical engineering term impedance matching.

Fundamentally, objects (instances) reference one another and therefore form a graph in the mathematical sense (a network including loops and cycles). Relational schemas are, in contrast, tabular and based on the Relational algebra which defines linked heterogenous tuples (groupings of data fields into a "row" with different types for each field).

Converting linked tabular rows to graph structures is hard, and even described as the Vietnam of Computer Science.

See also

External links