As a developer you might need a timer in your database. In that case you might find this feature helpful. You can create timer, as many as you like. Use them for benchmarks, to log import and export times, or to keep track of user log-in times.
Stop Watch
Each timer works like a little stopwatch. You can …
- start it,
- stop it,
- restart/stop it again,
- read the elapsed time,
- and reset/remove it.
This is accomplished with custom functions and a global variable:
- timer( name; action )
- param( key; value )
- param.get( key; params )
- param.delete( key; params )
- $$timer
Read more …
This article is part of my series Custom Function Vault. Here I describe miscellaneous custom functions to verify required script parameters.
param.script.check()
text.between( text; start; end; type )
trim.all( text; trimChr )
var.assign( definition )
Read more …
This article is part of my series Custom Function Vault. Here I describe a custom function for working with parameters.
Read more …
This article is part of my series Custom Function Vault. Here I describe custom functions for managing (script) parameters.
param( key; value )
param.get( key; params )
Read more …