The config tag contains a set of tags which configure how Reactor functions. Though the config tag is not required, when provided it's child tags are required as shown below.
This tag has no attributes.
|
Tag |
Required |
Description |
|---|---|---|
|
Yes |
Defines a unique name for your application. | |
|
Yes |
Defines the datasource that Reactor will use to access the database. | |
|
Yes |
Defines the type of database being used. | |
|
Yes |
Defines the relative path where Reactor will generated files. | |
|
Yes |
Indicates the conditions under which Reactor will regenerate files. | |
|
No |
Defines the username to use with the datasource. | |
|
No |
Defines the password to use with the datasource. |
<reactor>
<config>
<project
value="Scratch" />
<dsn
value="scratch" />
<type
value="mssql" />
<mapping
value="/reactorData" />
<mode
value="always" />
<!--
<username value="" />
<password
value="" /> -->
</config>
</reactor>