This optional element holds the list of project (global) parameters and their properties. It should contain (but not have to) a list of all parameters of all (X)SQL scripts and of all XSL templates that are declared inside the project.
Example
<?xml version="1.0" ?>
<xsqlt>
<parameters>
<parameter1 alias="parameter-title"
kind="string|text|integer|float|date|time|datetime|binary|boolean">
value
</parameter1>
<parameter2>...</parameter2>
<source-param1 alias="..." kind="..."/>
...
</parameters>
...
</xsqlt>
Child elements
- parameter
- This kind of element identifies the parameter name (the tag name), the meaning of parameter (alias attribute) and the parameter data type (kind attribute). It can hold the parameter default value too (in element's text). See parameter.
Parent element
- xsqlt
- See xsqlt (a root element).