my query:
Set RS = New ADODB.Recordset
SQL = "SELECT COD, PREZZO, CONT FROM " & NOME_DBF_LISTINI & " WHERE COD='" & CODART & "'"
RS.Open SQL, CON, adOpenForwardOnly, adLockReadOnly
pseudo code...
I need to fill myarray with result of the query
and for the next use i need to filetr the array items based COD="1234"
then loop the result of filter
Set RS = New ADODB.Recordset
SQL = "SELECT COD, PREZZO, CONT FROM " & NOME_DBF_LISTINI & " WHERE COD='" & CODART & "'"
RS.Open SQL, CON, adOpenForwardOnly, adLockReadOnly
pseudo code...
I need to fill myarray with result of the query
and for the next use i need to filetr the array items based COD="1234"
then loop the result of filter