Test lettura dataset

di il
3 risposte

Test lettura dataset

Salve,
sto cimentandomi con vd.net, vengo da vb6 e molte regole le devo capire
devo capire come fare per testare se la ettura è andata abuon fine
(in vb6 era: if recordset.eof then ....)
come posso fare ora?
Con.Open()
CurrentRow = 0
Dad2 = New OleDbDataAdapter("Select * from art_taglia_colore where id_articolo = '" & como_articolo & "' and taglia = '" & como_taglia & "' and colore = '" & como_colore & "' ", Con)
Dad2.Fill(Dst2, "Art_Taglia_Colore")
??????????
grazie a tutti

3 Risposte

  • Re: Test lettura dataset

    Ma perché non scrivi nella sezione VB.NET ?
  • Re: Test lettura dataset

    Ok, lo farò subito, grazie
  • Re: Test lettura dataset

    Salve,
    ho risolto il test, ma mi da errore quando eseguo update
    mi potete aiutare? di seguito il codice
    If Dst2.Tables("Art_Taglia_Colore").Rows.Count = 0 Then 'test di ok letura
    GoTo SCRIVI_NUOVO
    Else
    Me.DV1.CurrentCell = Me.DV1(como_Col, como_row)
    Dst2.Tables("Art_Taglia_Colore").Rows(CurrentRow)("quantita") = Me.DV1.Rows(como_row).Cells(como_Col).Value
    ' Dad2.Update(Dst2, "Art_Taglia_Colore") ' '''questo mi da errore
    Exit Sub
    End If
    grazie
Devi accedere o registrarti per scrivere nel forum
3 risposte