answersLogoWhite

0


Best Answer

A structured complex object database differs from an unstructured complex object database in that the object's structure is defined by repeated application of the type constructors provided by the OODBMS. Hence, the object structure is defined and known to the OODBMS.

User Avatar

Wiki User

โˆ™ 8y ago
This answer is:
User Avatar
More answers
User Avatar

AnswerBot

โˆ™ 6mo ago

In object-oriented databases, structured types refer to user-defined data types that can be created to model complex objects with multiple attributes. These structured types are defined by specifying the attributes and their related data types, allowing for the creation of custom objects with specific properties. Structured types in object-oriented databases enable more flexibility and organization in representing complex data structures.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Structured types in object oriented database?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is object rdbms?

Object-relational database management system (ORDBMS) is a type of database management system that combines characteristics of both relational database systems (RDBMS) and object-oriented database systems. ORDBMS allows the storage of complex data types like images, audio, and video in addition to traditional data types, and supports object-oriented programming concepts such as inheritance and encapsulation. This makes it suitable for applications that require handling both structured and semi-structured data.


Describe the area of structured types in an object oriented database and give an example of their use?

Data is stored as objects and can be interpreted only using the methods specified by its class.


What are the two major types of programming languages in c plus plus?

Object oriented programming and structured programming.


What database types is useful for storing java applets as well as processing large numbers of transactions?

OODBMS, object oriented database management systems


What are three types of dbms?

Three types of DBMS (Database Management Systems) include relational DBMS, object-oriented DBMS, and NoSQL DBMS. Relational DBMS organizes data into tables with rows and columns, object-oriented DBMS stores data as objects and classes, and NoSQL DBMS handles unstructured and semi-structured data with flexible schemas.


What are the different types of languages supported in database?

Ans: -- stored Database can supported languages, SQL -Structured query language. QL - object-oriented Data log (4D QL) - 4D Query Language. Hibernate Query Language (HQL) - A Java-based tool that uses modified SQL QBE - Query By Language


What is the application appropriate for an object-oriented database that contains text links to other types of documents?

An object-oriented database with text links could be used for managing a knowledge base system. Users can easily navigate between different types of documents through the text links, facilitating information retrieval and organization. This could be particularly useful in content management systems, digital libraries, or collaborative research platforms.


What are the types of high level language?

Arabic and Chinese


What is the difference between oodbms and ordbms?

Object-oriented database management systems (OODBMS) store data in a way that aligns with object-oriented programming concepts, allowing for complex data structures and relationships to be easily represented. On the other hand, object-relational database management systems (ORDBMS) combine relational database capabilities with object-oriented features, enabling users to work with both traditional relational data and more complex data types. ORDBMS often use SQL as the query language, whereas OODBMS may use object query languages.


What are different types of database management?

There are currently 3 general categories of data base management systems in use today:relational database systemsmultidimensional database systems (often referred as 'cubes')object oriented database systemsPrior to the success of relational database systems (early 80's) there were also hierachical database systems and network (aka CODASYL) database systems.


Why java is called purely object oriented language?

Java is called a "pure" object-oriented language because it requires that all code written in it be wrapped in objects. This differs from the more common meaning of "pure" object-oriented (everything is an object) in that Java has primitive types and primitive operations on them - int, char, double, float, long and addition, subtraction, multiplication, division. A real example of a PURE object-oriented language is Smalltalk, one of Java's predecessors.


Is c plus plus is pure object oriented?

No. C is not object-oriented, it is a procedural language.C++, while object-oriented, is not purelyobject-oriented. One of the requirements for a pure object-oriented language is that everything is an object. C++ still has primitive data types (int, long, double, etc.), and so is not purely object-oriented.