Index | Special Tags | Predefined Tags | Implementation | Home |
Special Tags
| |
There are some special tags which either have to be defined or the default values for this tags will be called. They are used for some settings in the program. |
|
DB Tag
| |
The DB tag has 4 values: A JDBCDriver, an URL, a user and a password. To define the DB tag in the commandline version, type -DB and afterwards the four values. If you just want to specify one or more of the 4 values, type after declaring the DB tag either one or more of the following name value pairs:
drv='name' for the JDBCDriver In the commandline version, only one connection will be established because only one is needed. However in the servlet version you have as standard value 5 connections. If you use the servlet version of PReP you have to define this values in the config file. However you may choose this method for the commandline version too since this version supports also the config file. For further information about specifying the DB tag values in the config file, please have a closer look at the description of the Config file. If you do not specify the DB tag, it will take the default values which are for both versions the following:
JDBCDriver = "sun.jdbc.odbc.JdbcOdbcDriver" |
|
USER Tag
| |
If the USER tag is set, the taglist will be automatically expanded with a tag 'ACTION' and value 'login'. The USER tag has two values: the username and the password. It will be checked if the name and the password match. It may look as follows: -USER 'name' 'password', where 'name' is the username and 'password' is the password. |
|