The documentation mentions that FinishDatabaseQuery() must be called to free the query resources. However, what happens in the following case with multiple queries?
Code: Select all
DatabaseQuery(2,"select * from mytable1")
... process the data
DatabaseQuery(2,"select * from mytable2")
... process the data
DatabaseQuery(2,"select * from mytable3")
... process the data
FinishDatabaseQuery(2)
Thanks,
Simon


