I’ve got this code:
rs1 = getResults(sSQL1) rs2 = getResults(sSQL2)
rs1 and rs2 and 2D arrays. The first index represents the number of columns (static) and the second index represents the number of rows (dynamic).
I need to join the two arrays and store them in rs3. I don’t know what type rs1 and rs2 are though.
I’ve figured it out. Turns out I was doing it the right way all along, I was just off by one. You don’t need a third array either.