Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,12 @@
|
|||
(class +Adr +Entity)
|
||||
(rel nm (+Sn +Idx +String)) # Name [Soundex index]
|
||||
(rel str (+String)) # Street
|
||||
(rel zip (+Ref +String)) # ZIP [Non-unique index]
|
||||
(rel cit (+Fold +Idx +String)) # City [Folded substring index]
|
||||
(rel st (+String)) # State
|
||||
(rel tel (+Fold +Ref +String)) # Phone [Folded non-unique index]
|
||||
(rel em (+Ref +String)) # EMail [Non-unique index]
|
||||
(rel txt (+Blob)) # Memo
|
||||
(rel jpg (+Blob)) # Photo
|
||||
|
||||
(pool "address.db") # Create database
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
(show
|
||||
(new! '(+Adr) # Create a record
|
||||
'nm "FSF Inc."
|
||||
'str "51 Franklin St"
|
||||
'st "Boston, MA"
|
||||
'zip "02110-1301" ) )
|
||||
|
|
@ -0,0 +1 @@
|
|||
(select nm zip +Adr nm "FSF") # Select name, zip from Adr where name = FSF*
|
||||
Loading…
Add table
Add a link
Reference in a new issue