log.addToGuestDatabase
| Syntax |
log.addToGuestDatabase (logName, subTableName, flHourlyRoll)
|
| Params |
logName is the name of the log within the current guest database log. subTable, an optional parameter, is the name of the table to create in the log table. Since this is an XML table, it's possible to have multiple objects with the same name. If this parameter is not passed, the default name is the current time and date. flHourlyRoll specifies whether or not to create subtables in the log table by hour. This optional parameter defaults to false.
|
| Action |
Creates any needed tables in the guest database log.
|
| Returns |
The address of the table the scripter can use to store log information.
|
| Examples |
log.addToGuestDatabase ("DocServerTestLog", "Test", true) » @["Power HD:Applications:Frontier:Guest Databases:ops:logs:1999-02-28.root"].["2/28/99"].docServerTestLog.["23"].["00001000\tTest"]
|
| Notes |
This verb, implemented as a script, is new in Frontier 6. This verb represents a new way of doing logging in Frontier, and is preferred over log.add.
|
| See Also |
log.add
|