plisqin-lib | Prefix: none
| Example: from
|
Contains essential functionality.
|
plisqin-lib/types | Prefix: none
| Example: String?
|
Contains data types, which are normal Racket values.
You can use them as predicates and contracts.
|
plisqin-lib/dialect | Prefix: none
| Example: mssql
|
Allows you to control which dialect of SQL gets generated.
|
plisqin-lib/strict | Prefix: none
| Example: where
|
Contains the strict variant of Plisqin.
|
plisqin-lib/strict/operators | Prefix: |.|
| Example: .<=
|
Contains the strict operators (comparison and arithmetic).
Note that these identifiers would conflict with frequently-used Racket
identifiers, so they are prefixed with a period by convention.
For example or vs .or and + vs .+
|
plisqin-lib/unsafe | Prefix: %%
| Example: %%where
|
Contains the unsafe variant of Plisqin.
|
plisqin-lib/unsafe/operators | Prefix: %%
| Example: %%<=
|
Contains the unsafe operators (comparison and arithmetic).
|
plisqin-examples/adventure-works | Prefix: aw:
| Example: aw:show-table
|
Allows you to access the AdventureWorks sample SQLite database.
AdventureWorks is an imaginary company that sells bicycles and related products.
|