How do I specify in the code to take the current date?
In Totum, there are a number of quick variables that are called through $#
. The most frequently used ones are date variables:
$#nd
— current date without time, short for (now date).
$#ndt
— current date with time, short for (now date time).
For example, if you need to calculate the production time — current date plus 10 days:
=: dateAdd(date: $#nd; days: 10)
How can I specify in the select function what to take from the current table?
Quite often it is necessary to say that the selection or action will be carried out in the current table:
=: select(table: $#ntn; field: 'field_name'; where: 'price' > 100)
$#ntn
— this is the name
of the current table, an abbreviation for (now table name).How do I specify in the select function to take data from the current field?
The Name
of the field can be obtained using $#nf
(now field).
=: clear(table: $#ntn; field: $#nf; where: 'id' = #id; log: true)
// this is an example for action code