DEFINE
statement
PARAM
DEFINE PARAM
statement
The DEFINE PARAM
statement allows you to define global (database-wide) parameters that are available to every client.
Requirements
- You must be authenticated as a root, namespace, or database user before you can use the
DEFINE PARAM
statement. - You must select your namespace and database before you can use the
DEFINE PARAM
statement.
Statement syntax
DEFINE PARAM $@name VALUE @value;
Example usage
Below shows how you can define a global parameter using the DEFINE PARAM
statement.
DEFINE PARAM $endpointBase VALUE "https://dummyjson.com";
Then, simply use the global parameter like you would with any variable.
RETURN http::get($endpointBase + "/products");