urQL/README.md

51 lines
1.8 KiB
Markdown
Raw Permalink Normal View History

2022-07-25 04:02:51 +03:00
# urQL
2023-01-20 00:36:03 +03:00
Scripting language grammar and parser for an Urbit RDBMS.
Pull Requests are appreciated, but you should start a discussion before you proceed. If green-lit then open an issue.
2024-02-28 20:18:58 +03:00
Actively seeking contributors to add/improve the following functionality:
1) speed-up INSERT parsing
2) FROM clause to support AS OF
3) parse CREATE VIEW
4) parse DROP VIEW
5) create uql/hoon mark file
2023-01-31 00:40:49 +03:00
## Usage
Build the library.
2023-01-31 00:58:42 +03:00
2023-01-31 00:40:49 +03:00
`=parse -build-file /=urql=/lib/parse/hoon`
Submit a command for parsing in the dojo.
2023-01-31 00:58:42 +03:00
2024-02-06 21:30:36 +03:00
`(parse:parse(default-database 'db1') "FROM foo SELECT TOP 10 *")`
2023-01-31 00:40:49 +03:00
Successful commands will return a typed list of commands parsed into their respective data structures.
2024-02-28 20:18:58 +03:00
## Sample database
urQL scripts for the Animal Shelter sample database are in the folder urql/gen/animal-shelter.
To parse the entire DDL and load script:
```
2024-03-18 00:21:20 +03:00
=uql `tape`(reel .^(wain %cx /=urql=/gen/animal-shelter/all-animal-shelter/txt) |=([a=cord b=tape] (weld (trip a) b)))
2024-02-28 20:18:58 +03:00
(parse:parse(default-database 'db1') uql)
```
This will likely take about a minute as parsing the 22K rows of calendar table insert urQL is slow (looking for contributors to speed insert parsing).
2023-01-31 00:58:42 +03:00
## Utilities
2023-01-31 00:40:49 +03:00
Error messages and failed tests return untyped hoon data, which looks like a blizard of big numbers. To make it suitable for human viewing there is a utility to change the atom big numbers to cords for all the urQL key words, type-tags, and many of the variable names.
1. Install the latest dotnet. Works on Linux and Mac.
2. Save the noun the dojo gave you to a file.
3. The utility will add '2' to the file name and save it (e.g. input.txt becomes input.txt2)
```
> dotnet fsi display-hoon.fsx input.txt
> cat input.txt2
[[%selected-aggregate COUNT %qualified-column [%qualified-object 0 'UNKNOWN' 'COLUMN-OR-CTE' %foo] %foo 0] %as CountFoo]
```