One thing I find really useful in PHP is the ability to dynamically create variables from the results of a SQL query using something like;
Is there a technique to do the same in B4x?
Thanks,
Kev
Dynamic variables:
foreach ($rw as $key=>$val) {
${$key} = $val;
$_SESSION[$key] = $val;
}
Is there a technique to do the same in B4x?
Thanks,
Kev