Click here to Skip to main content
15,887,928 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: One button submit that handles the work with the database Pin
Eddy Vluggen19-Dec-13 8:09
professionalEddy Vluggen19-Dec-13 8:09 
GeneralRe: One button submit that handles the work with the database Pin
Member 1038849419-Dec-13 8:16
Member 1038849419-Dec-13 8:16 
GeneralRe: One button submit that handles the work with the database Pin
Richard Deeming19-Dec-13 8:47
mveRichard Deeming19-Dec-13 8:47 
GeneralRe: One button submit that handles the work with the database Pin
Member 1038849419-Dec-13 9:38
Member 1038849419-Dec-13 9:38 
GeneralRe: One button submit that handles the work with the database Pin
Member 1038849420-Dec-13 7:24
Member 1038849420-Dec-13 7:24 
GeneralRe: One button submit that handles the work with the database Pin
Eddy Vluggen20-Dec-13 7:38
professionalEddy Vluggen20-Dec-13 7:38 
GeneralRe: One button submit that handles the work with the database Pin
Dave Kreskowiak19-Dec-13 9:29
mveDave Kreskowiak19-Dec-13 9:29 
Questionsyntax error while updating a record Pin
Member 1038849418-Dec-13 3:07
Member 1038849418-Dec-13 3:07 
Hello. I have this code to update A RECORD IN sql server . But it's giving me an error:
wrong syntax near Where.
Any help Please?

VB
Private Sub cmdUpdate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdUpdate.Click
       Dim strconnection As String = "Data Source=ELIANE-VAIO\SQLEXPRESS;Initial Catalog=DatabaseConnection;Integrated Security=True;"
       Dim _cn As SqlConnection = New SqlConnection(strconnection)
       Dim cmd As New SqlCommand
       _cn.Open()
       Dim strsql As String
       strsql = "update tblcustomer set "
       strsql = strsql & " ID = '" & txtCurrent.Text & "', "
       strsql = strsql & " name = '" & txtName.Text & "', "
       strsql = strsql & " email = '" & txtEmail.Text & "', "
       strsql = strsql & " address = '" & txtAddress.Text & "', "
       strsql = strsql & " deptid = " & cbDept.SelectedValue
       strsql = strsql & " where serial = " & Val(txtserial.Text)
       cmd.CommandText = strsql
       cmd.Connection = _cn
       cmd.ExecuteNonQuery()
       cmdRequery.PerformClick()
   End Sub


serial is autoincremented in sql server.
AnswerRe: syntax error while updating a record Pin
Pete O'Hanlon18-Dec-13 3:39
mvePete O'Hanlon18-Dec-13 3:39 
GeneralRe: syntax error while updating a record Pin
Member 1038849418-Dec-13 3:57
Member 1038849418-Dec-13 3:57 
GeneralRe: syntax error while updating a record Pin
Pete O'Hanlon18-Dec-13 4:00
mvePete O'Hanlon18-Dec-13 4:00 
GeneralRe: syntax error while updating a record Pin
Member 1038849418-Dec-13 4:03
Member 1038849418-Dec-13 4:03 
GeneralRe: syntax error while updating a record Pin
Pete O'Hanlon18-Dec-13 4:10
mvePete O'Hanlon18-Dec-13 4:10 
GeneralRe: syntax error while updating a record Pin
Richard Deeming18-Dec-13 4:13
mveRichard Deeming18-Dec-13 4:13 
GeneralRe: syntax error while updating a record Pin
Member 1038849418-Dec-13 4:24
Member 1038849418-Dec-13 4:24 
GeneralRe: syntax error while updating a record Pin
Pete O'Hanlon18-Dec-13 4:38
mvePete O'Hanlon18-Dec-13 4:38 
GeneralRe: syntax error while updating a record Pin
Richard Deeming18-Dec-13 5:02
mveRichard Deeming18-Dec-13 5:02 
JokeRe: syntax error while updating a record Pin
Pete O'Hanlon18-Dec-13 5:07
mvePete O'Hanlon18-Dec-13 5:07 
GeneralRe: syntax error while updating a record Pin
Member 1038849418-Dec-13 21:22
Member 1038849418-Dec-13 21:22 
AnswerRe: syntax error while updating a record Pin
Chris Quinn18-Dec-13 4:18
Chris Quinn18-Dec-13 4:18 
GeneralRe: syntax error while updating a record Pin
Member 1038849418-Dec-13 4:27
Member 1038849418-Dec-13 4:27 
QuestionVS2010 project referencing my .net 4.5 dll Pin
Bruno Leclerc III13-Dec-13 19:30
Bruno Leclerc III13-Dec-13 19:30 
AnswerRe: VS2010 project referencing my .net 4.5 dll Pin
Pete O'Hanlon13-Dec-13 20:52
mvePete O'Hanlon13-Dec-13 20:52 
AnswerRe: VS2010 project referencing my .net 4.5 dll Pin
Abhinav S13-Dec-13 21:51
Abhinav S13-Dec-13 21:51 
QuestionCould not load type 'Google.Apis.Requests.IErrorResponseHandler' from assembly 'Google.Apis' Pin
zish7912-Dec-13 0:55
zish7912-Dec-13 0:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.