Something you SQL affictionados will love is the ability to create database aliases IN SQL:

CREATE ALIAS AliasName FROM {<pathname> | MEMORY}
DROP ALIAS AliasName
ALTER ALIAS AliasName SET PATH TO <pathname>
<pathname> ::= <character string literal> [ ENFORCE ]

ENFORCE btw will create the directory on the server if it's not yet there. Also note the word MEMORY which creates a SQL-accessible in-memory databases (which is persistent until the server is stopped).

Home | Site Contents | Documentation | NexusDB Manual V4 | Overview of new Features in NexusDB V3