🔒 Closed Vb.net with mysql

Status
Not open for further replies.
your code seems to be okay but try using this code Snippet. Im using MSSQLServer here.

I supposed to update the firstname from a particular table. the new value was set into the fname string variable.
I used the using keyword here for the automatic disposal of the objects connection and command

Dim constring As String = "your_connectionstring_here"
Dim query As String = "your_commandtext_here"
Dim fname As String = "name_to_be_set_as_new_firtsname_value"
Try
Using con As SqlConnection = New SqlConnection(constring)
Using cmd As SqlCommand = New SqlCommand()
cmd.CommandText = query
cmd.CommandType = CommandType.Text
cmd.Parameters.AddWithValue("@fname", fname)
cmd.Connection = con
con.Open()
cmd.ExecuteNonQuery()
End Using
End Using
Catch ex As Exception
'some exception handling here
End Try


let me know how it works from your project.
 
mas recommended po ba na MySql database kesa sa 1st choice ko na SQL Server medyo hirap po kasi ako mag connect thru ip address at lan network. Salamat po sa sagot
 
Status
Not open for further replies.

About this Thread

  • 4
    Replies
  • 656
    Views
  • 5
    Participants
Last reply from:
PHC-Xes

Trending Topics

Online now

Members online
1,247
Guests online
2,943
Total visitors
4,190

Forum statistics

Threads
2,307,951
Posts
29,182,171
Members
1,192,696
Latest member
SKIBIDI1234
Back
Top