In iOS both sqlSelect and sqlExecute use the form sqlExecute(sql, paramarray).
Unfortunately at the time I call the commands, I only know the contents of the paramarray programatically.
So how can I create the Select or Execute commands programatically?
I could imaging having to use the ubound of an array of parameters and use a select case to manually generate a range of select statements - but it doesn’t feel very elegant. Is there a better way?