Path: dp-news.maxwell.syr.edu!spool.maxwell.syr.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsfeed.media.kyoto-u.ac.jp!newsfeed.gamma.ru!Gamma.RU!postnews.google.com!news3.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!nx01.iad01.newshosting.com!newshosting.com!69.28.186.75.MISMATCH!hwmnpeer01.lga!hwmedia!news.highwinds-media.com!news-server.columbus.rr.com!tornado.ohiordc.rr.com.POSTED!53ab2750!not-for-mail
From: Jay Dee <ais01479@aeneas.net>
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.2) Gecko/20040803
X-Accept-Language: en-us, en
MIME-Version: 1.0
Newsgroups: comp.databases.theory
Subject: Re: Modelling Complex Sentences
References: <1146778738.808972.303130@e56g2000cwe.googlegroups.com>
In-Reply-To: <1146778738.808972.303130@e56g2000cwe.googlegroups.com>
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
Lines: 78
Message-ID: <UiA6g.31463$P2.12372@tornado.ohiordc.rr.com>
Date: Fri, 05 May 2006 04:14:44 GMT
NNTP-Posting-Host: 24.123.195.58
X-Complaints-To: abuse@rr.com
X-Trace: tornado.ohiordc.rr.com 1146802484 24.123.195.58 (Fri, 05 May 2006 00:14:44 EDT)
NNTP-Posting-Date: Fri, 05 May 2006 00:14:44 EDT
Organization: Road Runner High Speed Online http://www.rr.com
Xref: dp-news.maxwell.syr.edu comp.databases.theory:39204

Neo wrote:
[snip]

I'm not replying to the post; I'm simply trying to grok this.

> (; Create a flower named flower1)
> (new 'flower1' 'flower')

So "new <literal> <type>" creates something?

> (; Create flower1 attribute brightest color is fluorescent red)
> (; Long method)
> (create bright modify color)

and "create <something> [attribute|modify]" creates something?

> (create (select flower1 attribute (select bright modify color))
>         is
>         (select fluorescent modify red))

and "create <a selected something> is <a selected something>"
creates something?

> 
> (; Create flower1 attribute brightest color was fluorescent green
>     on monday)
> (; Shorter method)
> (create flower1
>           attribute
>             (create bright modify color)
>               was
>                 (create fluorescent modify green)
>                    on monday)
> 
> (; Create flower1 attribute brightest color willBe fluorescent blue
>     on friday)
> (create flower1
>           attribute
>             (create bright modify color)
>                willBe
>                  (create fluorescent modify blue)
>                     on friday)

and "is" and "was" and "on" are... what?  how 'bout "willBe?"

> (; Create a person named john)
> (new 'john' 'person')
> 
> (; Create a verb named say)
> (new 'say' 'verb')
> 
> (; Create john says
>    "flower1 attribute brightest color willBe fluorescent blue
>     on friday")

so the expression in double quotes is _______.

and the magic words "flower," "person," etc. are...  what? declared?
defined?  but the magic "attribute" and "verb" aren't?

> (create john
>         say
>         (select flower1
>                   attribute
>                     (select bright modify color)
>                       willBe
>                         (select fluorescent modify blue)
>                           on friday))
> 

and "select" denotes <something?>

I'm not throwing rocks.  I tried the links to db-whatever.com and
got nowhere.

Have you got any guide to the grammar?  Semantic decoder?  I mean,
comment after comment says "create," but I can't figure out what's
being created.  Are "new," "create," and "select" all there is?
