Subject | Conversion error from string run time error 2147467259 |
---|---|
Author | Adriano |
Post date | 2006-07-19T21:52:47Z |
I've this update query
query = "UPDATE Fatture SET IntestazioneFattura = '" &
TIntestazione.Text & "', Prestazione = '" & TPrestazione.Text & "',
Speseimponibili = '" & ValSpeseImponibili & "', " & _
" Diritti = '" & ValDiritti & "', Onorari = '" & ValOnorari & "',
Spesegenerali = '" & ValSpeseGenerali & "', CPA = '" & ValCassaPrev &
"', TotaleImponibile = '" & ValTotaleImponibile & "', " & _
" Iva = '" & ValIva & "', Spesenonimponibili = '" &
ValSpeseNonImponibili & "', TotaleFattura = '" & ValTotaleFattura &
"', Ritenutaacconto = '" & ValRitenutaAcconto & "', " & _
" Totaledaversare = '" & ValTotaleVersare & "', Note = '" &
TNote.Text & "', Giorno = '" & Calendar.Day & "', Mese = '" &
Calendar.Month & "', Anno = '" & Calendar.Year & "', " & _
" Trimestre = '" & Trimestre & "', Pagamento = '" & Pagato & "',
PraticaID = '" & txtFatturaPraticaID.Text & "' WHERE IdFattura = " +
record + ""
Some fields are BLOB field, other are integer value, other char, varchar.
The query pass correctly the data but when execute that i receive the
error in the subject
Any hints ?
Thanks
Adriano
query = "UPDATE Fatture SET IntestazioneFattura = '" &
TIntestazione.Text & "', Prestazione = '" & TPrestazione.Text & "',
Speseimponibili = '" & ValSpeseImponibili & "', " & _
" Diritti = '" & ValDiritti & "', Onorari = '" & ValOnorari & "',
Spesegenerali = '" & ValSpeseGenerali & "', CPA = '" & ValCassaPrev &
"', TotaleImponibile = '" & ValTotaleImponibile & "', " & _
" Iva = '" & ValIva & "', Spesenonimponibili = '" &
ValSpeseNonImponibili & "', TotaleFattura = '" & ValTotaleFattura &
"', Ritenutaacconto = '" & ValRitenutaAcconto & "', " & _
" Totaledaversare = '" & ValTotaleVersare & "', Note = '" &
TNote.Text & "', Giorno = '" & Calendar.Day & "', Mese = '" &
Calendar.Month & "', Anno = '" & Calendar.Year & "', " & _
" Trimestre = '" & Trimestre & "', Pagamento = '" & Pagato & "',
PraticaID = '" & txtFatturaPraticaID.Text & "' WHERE IdFattura = " +
record + ""
Some fields are BLOB field, other are integer value, other char, varchar.
The query pass correctly the data but when execute that i receive the
error in the subject
Any hints ?
Thanks
Adriano