Subject | Re: Conversion error from string run time error 2147467259 |
---|---|
Author | Adam |
Post date | 2006-07-19T23:23:26Z |
--- In firebird-support@yahoogroups.com, Adriano <fadrianoc@...> wrote:
Adam
>varchar.
> 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,
> The query pass correctly the data but when execute that i receive theDoes your development environment not support paramaters in queries?
> error in the subject
>
> Any hints ?
Adam