| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> comp.databases.theory -> Re: How are OO databases doing
Alfredo Novoa schrieb:
> Arturo,
>
>> OO langages. And for developers like me it is still a pain not to have >> an integrated technology. So why the disconect?
This direction is very similar to the concept-oriented approach to data querying. In both cases the idea is that the programming language and the query language should be integrated. For example, the following "loop" statement
NewCollection = FOREACH(item IN MyCollection; item.price < 100) {
RETURN(item.name, item.price);
}
is equivalent to SQL SELECT. However, it is a part of the source code and it is the task of the compiler how to optimize this statement. In more complex and more interesting cases nested "loops" can be used as well as the operators of projection and de-projection.
-- http://conceptoriented.comReceived on Thu Feb 16 2006 - 04:12:53 CST
![]() |
![]() |