Hello everybody. It's my first post :)
I have a function which returns an array:
Dim myArray(5)
Public Function getMyArray()
getMyArray = myArray
End Function
And now I'd like to do some query..something like this
Select * From MyTable where MyTable.id IN (getMyArray());
When I use it...