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
sanno = ComboBox1.Text ' combobox mi restituisce l'anno sdat1 = statanno & "-01-01" 'tipo string sdat2 = statanno & "-12-31" ' tipo string Message.Info(dat1 & " " & dat2, "OK") ' qui verifico le date e sono giuste (2010-01-01 2010-12-31) sql = "select*from CHIUSURE WHERE data between 'dat1' and 'dat2'" hres = $hConn.Exec(sql)
il problema non è nell'esecuzione della connessione. ti posto il codice:Codice: [Seleziona] sanno = ComboBox1.Text ' combobox mi restituisce l'anno sdat1 = statanno & "-01-01" 'tipo string sdat2 = statanno & "-12-31" ' tipo string Message.Info(dat1 & " " & dat2, "OK") ' qui verifico le date e sono giuste (2010-01-01 2010-12-31) sql = "select*from CHIUSURE WHERE data between 'dat1' and 'dat2'" hres = $hConn.Exec(sql)se sostituisco le due variabili con le date tra apici funziona
sanno = ComboBox1.Text ' combobox mi restituisce l'anno sdat1 = statanno & "-01-01" 'tipo string sdat2 = statanno & "-12-31" ' tipo string Message.Info(dat1 & " " & dat2, "OK") ' qui verifico le date e sono giuste (2010-01-01 2010-12-31) sql = "select*from CHIUSURE WHERE data between dat1 and dat2" hres = $hConn.Exec(sql)