Search Data from Multiple Table Columns in mySQL using VB.Net

Search Data from Multiple Table Columns in mySQL using VB.Net

Search Data from Multiple Table Columns in mySQL using VB.Net.

In this tutorial, you will learn how to search data from multiple table columns in mySQL using VB.Net.

First, let’s create our project in Microsoft Visual Studio 2013 and on our blank Form1 designer, let’s drag a button, text box and data grid view. Here’s an example:

Search Data from Multiple Table Columns in mySQL using VB.Net

Next, on your mySQL we will add a new database and table with multiple columns.

[mysql]

CREATE TABLE IF NOT EXISTS sample (
`ID` int(10) NOT NULL AUTO_INCREMENT,
`Firstname` VARCHAR(50) NOT NULL,
`Middlename` VARCHAR(50) NOT NULL,
`Lastname` VARCHAR(50) NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

[/mysql]

Adding table with columns.

[mysql]

INSERT INTO `sample`(`Firstname`, `Middlename`, `Lastname`)
VALUES
('Ian','Hero','Santos'),
('Kane','Luke','Lavapiez'),
('Annika','Anne','Mald');

[/mysql]

Adding values to our table.

Next, we are going to add this line of code to our search text box text changed event and form load event.

[vbnet]

Dim conn As MySqlConnection
Dim cmd As MySqlCommand
Dim da As MySqlDataAdapter
Dim dt As DataTable
Dim sql As String

Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Try
conn = New MySqlConnection
conn.ConnectionString = "server=localhost; userid=root; password=; database=sampledatabase;"
conn.Open()
sql = "SELECT * FROM sample;"
cmd = New MySqlCommand(sql, conn)
da = New MySqlDataAdapter
dt = New DataTable
da.SelectCommand = cmd
da.Fill(dt)
DataGridView1.DataSource = dt
Catch ex As MySqlException
MsgBox(ex.Message)
Finally
conn.Close()
da.Dispose()
End Try
End Sub

[/vbnet]

Code for form load event to get all the values from the mySQL database.

[vbnet]

Private Sub TextBox1_TextChanged(sender As Object, e As EventArgs) Handles TextBox1.TextChanged
Try
conn = New MySqlConnection
conn.ConnectionString = "server=localhost; userid=root; password=; database=sampledatabase;"
conn.Open()
sql = "SELECT * FROM sample WHERE CONCAT_WS(Firstname, Middlename, Lastname) LIKE '%" & TextBox1.Text & "%'"
cmd = New MySqlCommand(sql, conn)
da = New MySqlDataAdapter
dt = New DataTable
da.SelectCommand = cmd
da.Fill(dt)
DataGridView1.DataSource = dt
Catch ex As MySqlException
MsgBox(ex.Message)
Finally
conn.Close()
da.Dispose()
End Try
End Sub

[/vbnet]

Code for text box text changed event for searching the data based on the input text on the search box.

To test our code, let’s run the program and let’s try to search for the name “Ian”. Here’s my result:

Search Data from Multiple Table Columns in mySQL using VB.Net

As you can see it searched on our Firstname column. Now, let’s try “Luke”. It is the middle of Kane Luke Lavapiez. So, we are expecting to get the Kane’s full name if we searched for “Luke”. Here’s my result:

Search Data from Multiple Table Columns in mySQL using VB.Net

So, our expected result meets the searched result!

You have successfully learned on how to Search Data from Multiple Table Columns in mySQL using VB.Net.

For questions or any other concerns or thesis/capstone creation with documentation, you can contact me through the following:

E-Mail: [email protected]

Facebook: facebook.com/kirk.lavapiez

Contact No.: +639771069640

Ian Hero L. Lavapiez

BSIT Graduate

System Analyst and Developer

Related topic(s) that you may like:

 

 

 

Frequently Asked Questions

What does this VB.NET code snippet demonstrate?

Focused VB.NET WinForms code pattern: how to add, insert, save, search, display, print, connect to SQL Server, or perform a common calculation with minimum code. Drop-in pattern you can adapt for your own capstone module.

What Visual Studio and SQL Server versions does this VB.NET project require?

Most projects use VB.NET WinForms on .NET Framework 4.5+ with SQL Server 2012 Express or higher. To run: install Visual Studio 2019 / 2022 (Community is free) with the ‘Desktop development with .NET’ workload, install SQL Server Express + SSMS, open the .sln file, build, run.

How do I set up the database for this VB.NET project?

Open SQL Server Management Studio (SSMS) and connect to your SQL Server (e.g. localhost\SQLEXPRESS). Right-click Databases, choose Restore Database OR New Database then import the included .sql script. Update the connection string in App.config (or in code-behind Module) with your server name + credentials. Rebuild and run.

Can I use this VB.NET project for a BSIT capstone or thesis?

Yes, VB.NET is one of the most accepted languages by Philippine BSIT panels. Extend it: add role-based access (admin/staff/customer login redirect), Crystal Reports or RDLC reports, dashboards with Chart control, audit log, multi-branch support. Pair with Chapter 1-5 documentation matching your panel’s rubric.

Why am I getting ‘connection error’ or ‘cannot find SQL Server’?

Three common VB.NET issues: (1) Connection error: SQL Server isn’t running. Open SQL Server Configuration Manager and verify SQL Server (SQLEXPRESS) service is started. (2) Wrong server name in connection string. Try .\SQLEXPRESS, (local)\SQLEXPRESS, or your machine name. (3) Login failed: SQL Server is set to ‘Windows-only’ authentication. Switch to Mixed Mode in SSMS Server Properties, Security.

Where can I find more VB.NET projects with source code?

Browse the VB.NET Projects hub for the full library. For C# WinForms alternatives see C# Projects. For ASP.NET web alternatives see ASP.NET Projects. For BSIT capstone idea lists see 150 Best Capstone Project Ideas.

Leave a Comment