AndrewMozley
Programmer
I have a function my_update() which updates several tables; it runs in its own data session.
The form which calls my_update() has built up a cursor, tdetail, which contains several lines (records) of information which need to be passed to this function.
What is the best way of doing this? Up to now I have taken the contents of tdetail and built them into an array, passing this as a parameter to my_update().
Thanks. Andrew
The form which calls my_update() has built up a cursor, tdetail, which contains several lines (records) of information which need to be passed to this function.
What is the best way of doing this? Up to now I have taken the contents of tdetail and built them into an array, passing this as a parameter to my_update().
Thanks. Andrew