Insert,seek,Update & Delete code for Mysql & Vb.net2008

sivakaranlk

New member
Joined
Apr 27, 2011
Messages
1
Programming Experience
Beginner
Hi i'm new to this forum
i'm trying to connect vb.net2008 & mysql(wamp server)
To make a connection between mysql & vb.net i used this code & i think it is working
but i want the codes for insert,seek,update & delete

Dim connectionstring AsString
connectionstring = "server=localhost;user id=root;password=;database=skmobile;"
Dim con AsNew MySqlConnection
con.ConnectionString = connectionstring
Try
con.Open()
MsgBox(
"Connection established")
Catch ex As Exception
MsgBox(
"Error" + ex.ToString)
EndTry
 
Back
Top