In VBA, there are times when you might want to pass an indeterminant number of arguments onto a function. In the VB world, paramarray handles such. But what if one needs, in turn to pass such onto a sub-function?
In the challenge here, I have a couple of different places that format a string, inserting subsequent values, for example:
tx = SetSQL("UPDATE tabA SET cd={1} WHERE id={2}", "'123'", 89)
Depending upon the situation, there might be 1 or n parameters.
This worked well when I handled all the SQL directly. For example:
set rsNEW = currentdb.execute (SetSQL("UPDATE tabA SET cd={1} WHERE id={2}", "'123'", 89))
But, I then found that I had several situations where the same processing was repeated and I wanted to refactor some of that into a more all encompassing call some of the time. I wanted to wrap the SetSQL
inside of another routine. For example:
public sub DoMyDBThing("UPDATE tabA SET cd={1} WHERE id={2}", "'123'", 89)
And this put me in a situation where I needed to transfer a paramarray
to a paramarray
.
The solution is to write a wrapper function that converts the paramarray to an array variant.
As I already used
SetSQL
, it remained accepting theparamarray
. And what it once did becameSetSQLBase
. In this way, my other extensions that needed the same functionality could also take paramarrays and then useSetSQLBase
to generate the text. This way I didn't have to replicate the program.Hence:
This still handles the n number of trailing parameters as it rewraps the
paramarray
asvariant array
to pass to the core routine:Now other routines can also call the same thing, also accepting an unknown number of arguments, get the sql back and process. For example: