Dave Jarvis' Repositories

git clone https://repo.autonoma.ca/repo/rxm.git

Formatting.

Author Dave Jarvis <email>
Date 2015-02-08 11:22:08 GMT-0800
Commit c5a160f6a4f4c84bb679490cda4e8a7b3ddcc947
Parent e9d4f8d
README.md
# Overview
+```
root > people, # "root" is a keyword
person > person, # maps a node to table context
address > address,
.*; # * globs all columns. ; is WHERE
+```
# Namespaces
+```
root > people(html, http://www.w3.org/TR/html4/),
person > html:person,
person.id > people:id( people, http://www.people.com ),
+```
# Where clause
+```
account.id = $id # $ starts a named parameter
account.id <> $id # inequality parameter comparison
account.id <= 42 # numeric less than or equal to comparison
account.id >= 42 # numeric greater than or equal to comparison
+```
Delta 6 lines added, 0 lines removed, 6-line increase