Xref: utzoo comp.ai:7460 comp.object:1651 comp.lang.c++:9199 Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!samsung!uakari.primate.wisc.edu!uflorida!haven!cs.wvu.wvnet.edu!cerc.wvu.wvnet.edu!cathedral!siping From: siping@cathedral.cerc.wvu.wvnet.edu (Siping Liu) Newsgroups: comp.ai,comp.object,comp.lang.c++ Subject: **** Query language for object-oriented database ? **** Message-ID: <712@babcock.cerc.wvu.wvnet.edu> Date: 24 Aug 90 16:50:31 GMT Sender: news@cerc.wvu.wvnet.edu Followup-To: comp.object Lines: 19 Is there any query language for object-oriented/frame style organized database? I know somebody is doing it using SQL. For example, a database may be organized like this: { man: name, age; } { john: isa man, name "john", age 21; } { bob: isa man, name "robert", age 34; } ... and they can do: SELECT name FROM man WHERE age > 30; But SQL may not be the best choice for this kind of database. Is there any kind of survey done on this issue? Has someone implemented something other than SQL? Thanks a lot. siping@cerc.wvu.wvnet.edu