I would like to be able to cast a value dynamically where the type is known only on runtime.
something like this
myvalue = ctype (value, "String, Integer or Boolean")
the string that contains the type value is passed as argument and also read from DB.
And the value is stored as string in the DB.
Is this possible ?
Thanks in advance.