Android Question HttpUtils2 with SQL Server Insert Into

Metall4You

Member
Licensed User
Longtime User
Hello

How i can change the following Code with "HttpUtils2" ?

HttpUtils.CallbackJobDoneSub = "Update_Stundenliste"

HttpUtils.PostString("Update_Stundenliste", ServerUrl, "INSERT INTO Stundenliste(Kunden_NR, Projekt_ID, Projekt_Name, Mitarbeiter, Kunde, Datum, Von, Bis, Abgerechnet, Verrechnen, KM, PreisKM, Stundensaldo, Leistung, Beschäftigung, Tätigkeit, Status, Projektstatus, Woche, Monat, Jahr) VALUES(" _
& gintKundenNR & ", " & gintProjektID & ", '" & cmbProjekte.SelectedItem & "', '" _
& gstrMitarbeiter & "', '" & cmbKunden.SelectedItem & "', '" & txtDatum.Text & "', '" & txtVon.Text & "', '" & txtBis.Text & "', 'NEIN', 1, 0, 5, " & lblSaldo.Text & ", 500, 'Test', " & cmbTätigkeit.SelectedIndex & ", 1, 2, 20, 9, 2013)")

Became this Errormessage:

Error. Url=http://www.easymet.ch/EasyMet/Android/EasyMet_SQLServer_Test.aspx Message=Internal Server Error

Thanks

Ramon
 
Top