Is it possible to work with two or more DataBaseQuery at the same time
In fact I would like to do something Like this :
strSQL="Select name from table"
If DatabaseQuery(strSQL)
While NextDatabaseRow()
strSQL2 = "Select * From Table2 where name = '" + GetDatabaseString(0)
If DatabaseQuery(strSQL)
While NextDatabaseRow(=
Code: Select all
      Wend
    EndIf
  
  Wend
EndIf
Thanks for your suggestions
BDu