Home »
VB.Net »
VB.Net Programs
VB.Net program to insert a record in the MySql database
By Nidhi Last Updated : November 15, 2024
Prerequisites: Need to install MySQL server and MySQL connector.
VB.Net – Insert Record in MySQL table
In this program, here we will connect to the MySQL database and then insert a record into the "employee" table.
Program/Source Code:
The source code to insert a record in the MySql database is given below. The given program is compiled and executed successfully.
VB.Net code to insert a record in the MySql database
'VB.NET program to insert a record in MySql database.
Imports MySql.Data.MySqlClient
Module Module1
Sub Main()
Dim connString As String
'Connection String to connect with MySQL database.
connString = "server=localhost;userid=root;password=root;database=sampledb"
Dim conn As New MySqlConnection(connString)
conn.Open()
Dim InsertCommand As String
InsertCommand = "INSERT INTO employee(eid,ename, salary) VALUES(@eid,@ename,@salary)"
Dim cmd = New MySqlCommand(InsertCommand, conn)
cmd.Parameters.AddWithValue("@eid", 101)
cmd.Parameters.AddWithValue("@ename", "Amit Kumar")
cmd.Parameters.AddWithValue("@salary", 43200)
cmd.Prepare()
cmd.ExecuteNonQuery()
Console.WriteLine("Record inserted successfully")
conn.Close()
End Sub
End Module
Output
Record inserted successfully
Press any key to continue . . .
Explanation
In the above program, we imported a namespace MySql.Data.MySqlClient to establish the connection with the MySql database. Then we created a module Module1 that contains a Main() function.
The Main() function is the entry point for the program. In the Main() function, we created a connection string variable ConnString that contains the database connectivity credentials. After that we established the connection to the MySql database using MySqlConnection class and then insert a record into the "employee" table using ExecuteNonQuery() method of MySqlCommand class and then print the "Record inserted successfully" message on the console screen.
VB.Net Database Connectivity Programs »