19 Oct
2011
19 Oct
'11
2:45 a.m.
Fajar A. Nugraha wrote:
Is it possible to use sql expansion with query stored in a radius attribute (e.g. Tmp-String-0)?
Not currently.
For example, I have something like this to store my local configuration variables:
local-config { sql-now="select concat('Current time = ',now())" }
You can use that as a *load-time* expansion, via ${...}. But it means you can't change it at run-time. That's mainly used to abstract configuration on different machines.
Is there a way to change which characters remain unencoded? Thanks.
That's what "safe_characters" is for. Alan DeKok.