19/05/2023: A causa di un errore sono stati cancellati, insieme ad account creati da bot, alcuni account legittimi. Si prega di leggere qui: https://www.gambas-it.org/smf/index.php?topic=9733.0
Se non ricordo male (non ho adesso a disposizione Gambas), allElements è un'array multidimensionale, ovvero, un array che contiene le righe, e ogni elemento è un array che contiene le colonne...Se non ricordo male, mi pare ci sia pure un esempio...
DIM hFile AS Stream DIM myconn AS NEW Connection DIM myset AS Result WITH myconn .Name = "/home/andy/Gambas/myZone/data/myZone.db" .Type = "sqlite3" .Open END WITH myset = myconn.Exec("select * from tbMiniblocchi order by ALIMENTO") hFile = OPEN user.home & "/Gambas/myZone/export/alimenti.csv" FOR CREATE PRINT #hFile, Application.Name & " " & Application.Version & "- Alimenti in miniblocchi - " & Format$(Now, " dd / mm / yyyy ") PRINT #hFile, "Id" & ";", "Alimento" & ";", "Tipo" & ";", "Gruppo" & ";", "Scelta" & ";", "Grammi" & ";", "Proteine" & ";", "Carboidrati" & ";", "Grassi" FOR EACH myset PRINT #hFile, myset!ID & ";", myset!ALIMENTO & ";", myset!TIPO & ";", myset!GRUPPO & ";", myset!SCELTA & ";", myset!GRAMMI & ";", myset!P & ";", myset!C & ";", myset!G & ";" NEXT myconn.Close CLOSE #hFile