The VB.NET-MySQL Tutorial - Part 3
Introduction
This article is part three of a series of articles made to document the creation of Windows® applications using Visual Basic.NET and MySQL. In the previous articles, I have described how to design an application and database, install MySQL and the MySQL Query Browser, and how to populate our database using the Script Editor feature of the MySQL Query Browser.
In this article, I will be describing the how to install Microsoft Visual Basic 2005 Express Edition, the MySQL Administrator, and MySQL Connector/NET. We will use these tools to create a login form for our tracking application.
Designing a Login System
There are multiple options available when working on a login system, but typically it comes down to one of two options:
- Build your own login system. Store usernames and passwords in a MySQL table, and use a single user account for all instances of the application that connect to MySQL. Each instance of the application will connect to one server account, then validate the user against the tables you created.
- Use MySQL’s built-in security tables. Create MySQL users for each account, and let MySQL handle authentication and privilege management.
These approaches both have their respective benefits and drawbacks. When you build your own login system, you potentially have greater control over users, groups, and privileges. You have simpler permission management because only one native MySQL user account is needed. On the other hand, there is more potential for security problems because something you create yourself does not have the review process seen in the MySQL server. In addition, you have a security weakness in the fact that every client installation has a copy of the central user account for connecting to MySQL, and that account has to have the maximum permissions needed for an administrative user. These concerns are not so great when you are developing a web application, because it is easier to manage the one web instance than a collection of desktop applications.
When you use the security built-into MySQL, you inherit a robust privilege management system that has been thoroughly reviewed and tested. You can limit privileges on a fine-grained level, and even assign different permissions based on which host the user connects from. The tradeoff is one of complexity: making the most of the built-in MySQL authentication is more difficult than building one of your own, and you must add a user to the MySQL server every time you want to add a new user to your application.
Because this is not a web-based application, we will be building our application using the built-in MySQL privilege system. In order to create a native MySQL user we will first install MySQL Administrator; a GUI application for server management.
Using MySQL Administrator
The MySQL Administrator is a GUI tool provided by MySQL AB for managing your MySQL server. The MySQL Administrator can be used to manage users, change server configuration, manage server databases, and monitor server status.
Downloading and Installing MySQL Administrator
The MySQL Administrator can be downloaded from http://dev.mysql.com/downloads/administrator/1.0.html. In our case we want the Windows version that includes an installer, avoid the ‘Without Installer’ version. Save the installer file to your hard-drive and double click the installer icon to begin the installation. The installer is a standard Windows installer and should not require any special steps.
Connecting to the MySQL Server
After the install is complete, there should be a MySQL Administrator icon on your desktop. Double-click the MySQL Administrator icon to display the login form.You can also start the MySQL Administrator by clicking Start > Programs > MySQL > MySQL Administrator.

The login form for the MySQL Administrator is almost identical to the login form for the MySQL Query Browser, with the exception being that MySQL Administrator does not require you to specify a default schema. Enter your root login information and click the OK button to start the MySQL Administrator.
Adding A User
Click the User Administration option from the left menu panel to bring up the user administration screen.

Click the New User button to create your new user account. For the MySQL User setting use the username value you set in your user row in the last tutorial. Set a password and set any Additional Information you want to specify (all information in the Additional Information section is optional).
Once you have set a username and password, click the Schema Privileges tab. Click the in_out database and then the << button to assign all available privileges for the database to your user (we will refine the privilege list in the future). Click the Apply Changes button to create the new user. You can now exit the MySQL Administrator.
Connector/NET
In early 2004 MySQL AB hired Reggie Burnett of ByteFX and acquired his ByteFX .NET data provider for MySQL. The provider was renamed Connector/NET and not only is it provided free under the terms of the GNU Public License, but it is one of the most feature-rich and best performing .NET providers for MySQL that is currently available. Connector/NET is written in C# and is completely managed code, allowing it to be ported to any platform that supports .NET, including Mono. One advantage Connector/NET provides over other solutions is its use of the native MySQL protocol: many other solutions wrap the MySQL C client library and suffer a performance loss as a result.
Downloading and Installing Connector/NET
MySQL Connector/NET is available for download at http://dev.mysql.com/downloads/connector/net/. Download the version that includes an installer to your local hard-drive and extract the Zip file.
Double-click the installer file to begin the installation process. Perform a complete install to the default directory.
Visual Basic.NET
Visual Basic.NET is the new version of Visual Basic. While it shares the Visual Basic name, there are significant differences between Visual Basic 6 and Visual Basic.NET. VB.NET is now entering into its third version. The first version was Visual Basic.NET, the second was Visual Basic.NET 2003, and the new version is Visual Basic.NET 2005. Visual Basic.NET 2005 introduces a new Express version that we will use in this tutorial.
The Express version of Visual Basic.NET is essentially a stripped-down version that still retains all the functionality needed to produce basic applications (no pun intended).
Downloading and Installing Visual Basic.NET 2005 Express Edition
VB.NET 2005 Express Edition is available for download at http://msdn.microsoft.com/vstudio/express/vb/. Look for a link to a Download Now link.
Once you have downloaded the installer, double-click the installer to being the installation process. The default installation options should be sufficient.
Starting Visual Basic.NET
Once you have installed VB.NET 2005, look for a link in the Programs section of your Start menu named Visual Basic 2005 Express Edition Beta. Start VB.NET and click Ctrl + N to start a new project.

Enter a name for the project and choose the Windows Application template. Click the OK button to create the project.
The Main VB.NET Window
Once your project is created you should see a window similar to this one:

On the left is the toolbox. You can drag items from the toolbox to add them to your application. In the center is the workspace, showing your first form in design mode. On the right is the Solution Explorer, which shows all the files involved in our project.
Naming The Default Form
First right-click on the Form1.vb object in the Solution Explorer and choose the Properties option. This will display a properties dialog where we can rename the file.

The properties tool is used to set various properties for the objects we will deal with as we work on our project. In this case we want to change the File Name property to more accurately reflect the purpose of the form. I will be prefixing the names of my forms with a frm prefix. Do not change the extension of the form file.
Once you change the file name, click the form in the workspace. The properties tool will change to reflect the properties of the form itself. Scroll down until you find the Text property and set it to something appropriate. In my case I set this to In-Out - Login. The Text property determined what appears as the title of the form, and you can see this reflected in the workspace.
Adding a Reference
Before we can use Connector/NET with Visual Basic, we need to add a reference to our project. By adding a reference, we are telling VB.NET where to find MySQL Connector/NET in order to access the objects and methods of Connector/NET.
To add a reference, choose the Add Reference… option of the Project menu. Choose the Browse tab and browse to the Connector/NET installation, typically located at C:\Program Files\MySQL\MySQL Connector Net n.n.n\bin\.NET N.N (The path may vary depending on the version number of Connector/NET and the .NET Framework). Choose the MySql.Data.dll file and Connector/NET will be added to your project. You will also need to add a reference to System.Data.dll.
Saving the Project
Now that we have configured a few settings in our project, we should save the project before continuing. Choose the Save All option from the File menu. Because this is the first time we are saving the project, we are presented with the following dialog:

These settings should generally be acceptable, with the project being saved to a new folder within the My Documents/Visual Studio/Projects folder (In my case I use a custom path to My Documents). Click the Save button to save your project.
Designing The Login Form
To design the login form, drag objects from the toolbox onto the form. In our first version we will need to prompt users for a server address, username, and password. Click on the TextBox object from the toolbox and drag it into the form. Once placed on the form you can widen it, move it, and generally fine-tune its size and positioning. Once you are happy with the placement of the textbox, go to the properties tool and find the Name property. Change the name to better reflect the use of the textbox (in my case I will be naming it txtServer). Place two additinal textboxes and name them txtUsername and txtPassword.
While it may be obvious to you and I what the purpose of these textboxes is, the end user will probably need some help. We will use Label objects as cues to the user to indicate what each TextBox is used for. Drag the label object onto the form and place it in-line with the first textbox. Once the label is placed, find the Text property in the properties tool and set the text to something like Server:. Repeat this process two additional times for the remaining Textbox objects. Because we will not be using the labels in actual application code there is not a real need to change the default names of the labels.
The final element to add to our form will be a pair of buttons; one to start the login process and one to cancel. Drag the buttons onto the form, and set the Name property to be cmdLogin and cmdCancel. Set the Text property to be Login and Cancel, respectively.
Once the process is complete your form should look something like this:

Creating an Event
I’m going to start by creating an event for the Cancel button. An event is something that triggers execution of code within VB.NET. In this case, the event in question will be the clicking of the Cancel button. The simplest way to create a button click event is to double click the button on the form. When you double-click the cancel button, the code view of the form will be displayed and you will see the following code appear:
Public Class frmLogin Private Sub cmdCancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdCancel.Click End Sub End Class
The Public Class line indicates that this class describes our form, and the Private Sub line shows that this is a subfunction that handles the Click event of the cmdCancel object. The two End lines show where the code for each of these sections ends.
We will add a single line to the subfunction to close the application when this button is clicked:
Application.Exit()
This line instructions the application to close, and will be executed when we click the Cancel button. Your code should now look like this:
Public Class frmLogin
Private Sub cmdCancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdCancel.Click
Application.Exit()
End Sub
End Class
Starting the Application
Once you have entered the code, save the project and press the F5 key to test your application. You can also choose the Start option from the Debug menu or click the green icon on the toolbar.
Your form should be displayed and if you click on the Cancel button, the form should disappear as the application is closed. If you click on the Login button nothing would happen as we have not created any code for the event of clicking on the Login button.
Importing the Connector/NET Namespace
Objects in VB.NET are organized into namespaces. Namespaces are logical grouping of objects used to help organize the various objects available in VB.NET.
To use a Connector/NET Connection object, you need to define it as MySql.Data.MySqlClient.MySqlConnection (more on this object later). This of course is a lot to type on a regular basis, and we can use the Imports statement to shorten this.
By adding Imports MySql.Data.MySqlClient to the start of the source file, we can just refer to the Connector/NET Connection object as MySqlConnection.
Adding a MySqlConnection Object
MySQL Connector/NET is essentially a collection of objects used to access a MySQL database. The first object we will use is the MySqlConnection object. The connection object serves as a broker between the other objects contained within Connector/NET and the MySQL server. The connection object handles the login process and is the object we will use to verify that a user’s login information is correct.
There are two steps to adding an object. First we declare the object, then we instanciate it. When declaring an object we assign a name that we will use to refer to it, and also indicate the scope of the object, or in other words, what functions and procedures can access the object. In our case we will want to ensure that any function or procedure within the form will have access to the connection object, so we will declare the connection object first thing within the class:
Imports MySql.Data.MySqlClient Public Class frmLogin Dim conn As MySqlConnection Private Sub cmdCancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdCancel.Click Application.Exit() End Sub End Class
The Dim keyword is used when declaring objects and variables. I’m using conn as the name of my connection object. The As keyword is used to indicate what we are declaring (an object, a variable, etc). Finally, MySqlConnection is the object we are declaring.
Instanciating the MySqlConnection Object
Now that we have declared the connection object, we will instanciate it. Until we instanciate an object it is not actually available for use. We will instanciate the object within the subfunction that handles the click event for the Login button. Double-click the Login button in the design view to create the subfunction.
To instanciate an object, we use the New keyword:
Private Sub cmdLogin_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdLogin.Click conn = New MySqlConnection() End Sub
Building the Connection String
The MySqlConnection object uses a connection string to know which server to connect to, which database to access, and what username and password to use to authenticate. The various properties are separated by semicolons. Here is a sample connection string:
server=localhost; user id=mike; password=12345; database=in_out
Of course, we need the connection string to reflect the information our user enters into the form. To do this we shall use the & character to combine multiple strings together, and the .Text value of the TextBox objects. Additionally I will use the _ character to split our code into multiple lines:
Private Sub cmdLogin_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdLogin.Click
conn = New MySqlConnection()
conn.ConnectionString = "server=" & txtServer.Text & ";" _
& "user id=" & txtUsername.Text & ";" _
& "password=" & txtPassword.Text & ";" _
& "database=in_out"
End Sub
Opening the Connection
The last thing we need to do is instruct the connection object to open the connection to the MySQL server with the .Open() method of the connection object:
Private Sub cmdLogin_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdLogin.Click
conn = New MySqlConnection()
conn.ConnectionString = "server=" & txtServer.Text & ";" _
& "user id=" & txtUsername.Text & ";" _
& "password=" & txtPassword.Text & ";" _
& "database=in_out"
conn.Open()
End Sub
Using a MessageBox
Once we have successfully opened the connection, we will want to let the user know that their username and password were correct. We can do this with the MessageBox object. In its simplest form, a MessageBox will display a message to the user, with an OK button. Here’s a simple line of code to display a MessageBox:
MessageBox.Show("Connection Opened Successfully!")
Closing the Connection
When we are finished with our connection object we need to close it. By closing the connection we release the resources needed to keep the connection active. It is a good practice to close connections as soon as you are finished with them. The connection is closed with the .Close() method.
conn.Close()
Disposing of the MySqlConnection Object
Once we are completely finished with an object, it is a good practice to dispose of it, thus minimizing resource usage in our application. When we dispose of an object, the resources it occupied are freed and the object no longer exists. We dispose of an object by calling its .Dispose() method:
conn.Dispose()
Catching Errors
Our code is currently only appropriate for an ideal situation. If we cannot connect to the server or if we provide the wrong username or password the connection object will return an error, also known as an exception. To handle errors, VB.NET has a special TRY … CATCH … FINALLY syntax. We place the code with the potential error after the TRY keyword and before the CATCH keyword. The CATCH keyword is used to indicate what kind of error we anticipate we might encounter (in this case the error returned will be a Connector/NET MySqlException object). Any code present after the FINALLY keyword will be executed whether there is an error or not. If an exception is encountered, the remaining code in the TRY section will not be executed.
Here’s the final code for the procedure that handles the connection:
Private Sub cmdLogin_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdLogin.Click
conn = New MySqlConnection()
conn.ConnectionString = "server=" & txtServer.Text & ";" _
& "user id=" & txtUsername.Text & ";" _
& "password=" & txtPassword.Text & ";" _
& "database=in_out"
Try
conn.Open()
MessageBox.Show("Connection Opened Successfully")
conn.Close()
Catch myerror As MySqlException
MessageBox.Show("Error Connecting to Database: " & myerror.Message)
Finally
conn.Dispose()
End Try
End Sub
This brings all of our connection code together and allows it to handle errors without crashing. We instanciate the connection object and assign it a connection string. Within an error handling TRY … CATCH block we attempt to open the connection to the server and, if successful, we will show a MessageBox to the user indicating our success and then close the connection.
If an error occurs while connecting, the code in the CATCH block will be executed. In this case we will show the user a MessageBox with the .Message property of the MySqlException object, which contains the human-readable error message associated with the error.
In the FINALLY block we will dispose of the connection object. We do this in the FINALLY block because whether or not the connection succeeds we will want to dispose of the object.
Testing the Project
Once your code is in place, save the project and press the F5 key to begin the application in debug mode. Try using the proper server address, username, and password, then try using the wrong server address, then try the wrong password. You will notice different error messages for using the wrong address and for using the wrong password. The error message for using the wrong username is the same as the error message for using the wrong password, as a seperate error message would provide a security threat in that a potential attacker would know whether they had a correct username or not.
Improvements
There are a few improvements that will need to be made to our login form. First of all, our user should not be expected to enter the server address every time they want to use our application, and in the future we will cover how to store the server address in a configuration file.
The second improvement will be with regards to error handling. Showing the MySQL error message is fine during development, but the production version of our application should not show the database error messages directly. We can use the .Number property of the MySqlException object to determine what kind of error we are dealing with, and then create a custom error message.
Finally, we will of course need to eventually have a successful connection lead to a new form in the application. If our application consisted of a login form and nothing else, it would not be very popular.
Conclusion
In this tutorial we have covered installing MySQL Administrator and created a new MySQL user account. We then installed VB.NET and MySQL Connector/NET. Finally we used VB.NET to create a login form for our application that will connect us to a MySQL server (assuming we provide the correct server address and username/password). The form is configured to handle errors during the connection by using the TRY … CATCH … FINALLY syntax.
The project file created in this tutorial is available at http://www.vbmysql.com/wp-content/uploads/vb-mysql-tutorial-3.zip. The project files are for Visual Basic 2005 Express Edition.
In the next tutorial we will create our first event and will create a form to display and update the current status of our users.
November 11th, 2006 at 4:48 pm
Thank you!!! Your tutorials are the best on the web.
November 20th, 2006 at 11:25 am
Hi,
I’ve downloaded the http://www.vbmysql.com/wp-content/uploads/vb-mysql-tutorial-3.zip. project but i fails to open “Missing VisualStudioProject Section” - Why?
Regards.
December 7th, 2006 at 12:24 pm
The MySQL Administrator from MySQL.com can no longer be downloaded separately. It now comes bundled in the MySQL GUI Tools Bundle at http://dev.mysql.com/downloads/gui-tools/5.0.html
December 8th, 2006 at 4:35 pm
brilliant, now i can get on with the real stuff.
thanks.
kevin
December 11th, 2006 at 3:08 am
Hi,
I think that tutorials rock, congratulations. Do you think I can get this working for a server-client app using the Visual basic 2005 express.
The questions is becuase in the documentation the VB 2005 express it is not permit to do remote connection. Thanks for your help.
January 19th, 2007 at 6:30 pm
Hi, top of the day to you , just came across your site and i must say the materials are very good right now i am even convinced about using Mysql though i have always thought using mssql is better which brings me to the question i already have mssql 2005 express installed on my system can i still install mysql along with mssql on my desktop , that is can the two coexist
January 20th, 2007 at 1:42 am
Yes, they can coexist. I recommend HeidiSQL as MySQL DB tool - it’s ofcourse free.
February 8th, 2007 at 6:30 am
A first chance exception of type ‘System.NullReferenceException’ occurred in MySql.Data.dll
EVERYTIME i add conn.open() this is the error i get and i cant get any farther.
February 12th, 2007 at 4:20 am
If this does not work for somebody then nothing will .
Thank you very much
February 21st, 2007 at 7:48 am
HI,
HOW LOGIN CREATE,SQL SERVER2000 WITH VB.NET.
THANKS.
February 23rd, 2007 at 4:08 pm
Very good tutorial.
February 26th, 2007 at 3:55 pm
Very useful, thanx
March 1st, 2007 at 9:53 am
VERY VERY USEFUL. I have been looking for a clear and concise explanation for SQL connections for VB.NET based applications and this is BY FAR the best on the net. KEEP IT UP!
March 1st, 2007 at 11:07 am
HI,
HOW CAN I CREATE LOGIN IN MICROSOFT ACCESS WITH VB.NET WINDOW APPLICATION.
THANKS.
March 2nd, 2007 at 10:25 am
thakssssszzzzz
March 6th, 2007 at 2:37 pm
Hi, Great tutorial but i cant get the Imports MySql.Data.MySqlClient to work. I have downloaded the MySQL driver but nothing works. Is there something else I’m suppost to do that Im not doing?
Thanks
March 6th, 2007 at 2:56 pm
QWERTYtech, you have to add the driver you downloaded as a reference. To add a reference to the driver do the following:
Click the Project menu then click Add Reference.
There’s a browse tab if you are using the Xpress version or there is a browse button at the botton of the window. Click either one and browse to the directory where you installed the mySQL Connector driver (C:\Program Files\MySQL\MySQL Connector Net n.n.n\bin\.NET N.N where N is the version number). Add the MySql.Data.dll file and click ok. This will add the connector driver to your project.
March 14th, 2007 at 1:09 am
Hi, I am using the MySql.Data.MySqlClient to work with a MySQL database at another server running FC5. Do you guys have any example on how to form the connectionstring to connect to it? I try with “database=test;server=//192.168.127.225/var/lib/mysql/mysql.sock;user id=root; pwd=123456″ but it fail with error message “Unable to connect to any of the specified MySQL hosts”. Can anybody help?
Thank you
March 22nd, 2007 at 5:44 am
it’s very good tutorial.Thank’s
March 24th, 2007 at 5:09 pm
Hi, Best tutorials I’ve come across Thanks, but how do I connect to a MySQL database over a LAN? entering the Server Name results in “host ‘PC01.home’ is not allowed to connect to this MySQL server. PC01 is allowed to connect to the server, there are no internal firewalls etc.
March 24th, 2007 at 6:23 pm
Cheng, if you are using a port try 192.168.127:225 instead of 192.168.127.225
Highwayman, for connections over a LAN you have the option of using the LAN IP address for the server or the computer name. I would recommend using the computer name for the server if you are not using static IP addressing and also provide an option to declare the server to connect to as well as the username and password to connect with in your programming. This will allow for the program to run with multiple mySQL databases. That all depends on the type of programming environment you are working in.
March 27th, 2007 at 6:42 am
HI, I AM PROGRAMMER USING VB.NET PROBLEM THAT CANNOT KONNECTED TO THE DATABASS HOW DO I DO THAT. OKAY THE DATABASS IS THE OTHER PUTER ON THE LAN SOMEWHERE ELSE NOT FILE ON LOCAL DISC. THE DATABASS BE THE MICRO-SOFTS MS SEQUEL SERVENT.
April 8th, 2007 at 3:34 pm
I have been going mad trying to get my connection string to prompt for the user name and password. Your solution is so simple but effective,
I will be using this in my VB.NET Compact Framework application
thank you
April 9th, 2007 at 4:26 am
I’ve used th tutorial and it works fine with the localhost. However I’ve tried using over the LAN with the correct User Name and Password and Server as and IP Address but all is get is Access denied for user. What did I do wrong?
Thanks in advance.
April 23rd, 2007 at 2:29 pm
Just a note that the MySQL Connector 5.0 does not work with Visual Studio 2003. You have to use the 1.0 version. (I know, I know…. this is about VS 2005)
May 2nd, 2007 at 4:21 pm
This tutorial has helped me make the connection finally between my vb2005 program and mysql 5.0 database. Ive spent days working on the connection and finally having it work for me ends much of my troubles. Now all’s thats left will be the data catching, parsing and my program should be finally complete.
May 9th, 2007 at 1:20 pm
Man, your are the best….your tutorial is great. Keep on the good work .
May 10th, 2007 at 5:56 am
Hi!
This code is excellant..
Ok, How do we write the code, to dynamically connect database.. as the Mysql doest it as Stored Connection Combobox..??
Dynamically changing the Host name by selecting stored connection Combo box.!!
June 24th, 2007 at 3:46 pm
hi
it’s one of the best tutorial that i’ve ever seen
thank you
June 25th, 2007 at 6:33 am
Thanks. Searching everywhere for straightforward connection information for VB.Net and MySQL.
Did the job perfectly. Screenshots are a great touch for letting you know you’re in the right place.
cheers,
Matt.
June 27th, 2007 at 2:27 pm
A usefully tutorial. I’ll think that many more people come to congratulations
July 16th, 2007 at 5:24 pm
When I go to Tools/References in VB (in Excel) and browse for the Mysql.Data.dll, I can find it OK, but when I try to add it, I get the error msg “Cannot add a reference to the specified file”. I would be grateful for any help.
July 26th, 2007 at 3:36 am
my application is vb.net 2005 and my dtabase is microsoft acces. i want to create a button log in to sistem, change password button. can anyone help me?
July 31st, 2007 at 3:00 am
Good day, tnx for the tutorials ^^
July 31st, 2007 at 3:17 am
it helps alot…
August 2nd, 2007 at 3:26 pm
its works! you’re d man.
August 26th, 2007 at 4:41 pm
Thanks for user friendly tutorial. No issues all. I would like to use MySql for my application.
this code help me a lot.
August 26th, 2007 at 4:41 pm
Thanks for user friendly tutorial. No issues at all. I would like to use MySql for my application.
this code help me a lot.
September 20th, 2007 at 10:25 pm
Hi, thanks a lot! great stuff, very very usefull!!!!!!!!!!!!!!!!!!!!!!!!
September 26th, 2007 at 5:56 pm
Excellence tutorial, thanks a lot!, very useful…..
October 11th, 2007 at 12:24 pm
Thanks for this helpful tutorial. I am just wondering do we need to be connected to the internet if we use mysql database? to be specific, is this a client based systems or the data is stored in mysql database? thanks
October 17th, 2007 at 3:43 pm
Where do i find the System.Data.dll?
October 17th, 2007 at 5:42 pm
Danne: Project->Add Reference…->.NET tab->choose System.Data.dll (look at the path column)
October 17th, 2007 at 5:49 pm
Danne: Menu-> Project -> Add Reference -> .NET (TAB) Chosse — System.Data –
October 21st, 2007 at 4:26 pm
Excellent Tutorial, It works!
Thanks a lot!
October 29th, 2007 at 7:53 am
Private Sub cmdLogin_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdLogin.Click
conn = New MySqlConnection()
conn.ConnectionString = “server=” & txtServer.Text & “;” _
& “user id=” & txtUsername.Text & “;” _
& “password=” & txtPassword.Text & “;” _
& “database=in_out”
Try
conn.Open()
MessageBox.Show(”Connection Opened Successfully”)
conn.Close()
Catch myerror As MySqlException
MessageBox.Show(”Error Connecting to Database: ” & myerror.Message)
Finally
conn.Dispose()
End Try
End Sub
October 29th, 2007 at 7:55 am
Adding a MySqlConnection Object
MySQL Connector/NET is essentially a collection of objects used to access a MySQL database. The first object we will use is the MySqlConnection object. The connection object serves as a broker between the other objects contained within Connector/NET and the MySQL server. The connection object handles the login process and is the object we will use to verify that a user’s login information is correct.
October 29th, 2007 at 8:13 pm
Hi, i´m trying to do this connection using vb.net 2003, but i can´t add the reference mysql.data.dll i receive this message:
a reference to “C:\program files\mysql… etc etc” could not be adden this is not a valid assemby or COM component..
can anybody help me!!!
November 5th, 2007 at 10:23 am
great tutorial ^^
help me a lot thanks ^^
November 11th, 2007 at 10:27 pm
Excellent tutorial - very clear, occasional places where I had to think for myself but that made me understand what was going on.
First rate - looking forward to Tutorial 4 tomorrow
November 17th, 2007 at 5:31 am
well guys this is a very good exapmle of it but it was looking for an example where i can directly establish coeection between mysql and vb.net just liek when we do while connecting to mssql in a datagrid right click it and the add the connection string and thats it.
November 17th, 2007 at 5:33 am
well guys this is a very good exapmle of it but it was looking for an example where i can directly establish coeection between mysql and vb.net just liek when we do while connecting to mssql in a datagrid right click it and the add the connection string and thats it. and for the guys who were asking to connect the mysql on lan thats the easy part jsut repalce the hostname whith the ip address of the server were mysql is running and give theuser name password for that mysql server and it will connect.
December 20th, 2007 at 9:00 am
Thanks for the excellent tutorial
January 13th, 2008 at 10:47 pm
Thanks man, very clear tutorial
February 5th, 2008 at 8:18 pm
Excellent work!!! very useful.
February 13th, 2008 at 8:40 pm
Thanks mate, you really helped me. I made a connection with a MySQL server a long time ago, but forgot how. Now I got it again!
The tutorial is really clear and extremely helpfull. I hope many readers will be just as hapy with your tutorial as I am.
Thanks again! And good luck with your projects in the future.
Nrzonline
February 21st, 2008 at 6:17 am
good job….
Thnx….
February 29th, 2008 at 5:21 am
hi I cant locate System.Data.dll file for referencing, is it in the same location as MySql.Data.dll? if so on installation of Net connector it didn’t install
March 7th, 2008 at 8:05 am
This is great. Just the starting push i needed!!!
April 1st, 2008 at 12:14 pm
I have tried the same coding in VB2008 but then it does not connect me to the server. it keeps on showing “Error Connecting to Database: Unable to connect to any of the specified MySQL Host. How can i connect it?
April 6th, 2008 at 1:24 pm
Hi,
I work with VB.net express 8, and not see where i insert those lines:
Imports MySql.Data.MySqlClient
—————————
Public Class frmLogin
Dim conn As MySqlConnection
Private Sub cmdCancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdCancel.Click
Application.Exit()
End Sub
End Class
—————————
Where i do?
Tanks
April 11th, 2008 at 11:32 am
Another great tutorial, I am looking forward to the next article.
April 14th, 2008 at 12:01 pm
Hi,
i have the same problem like Eddy Leong.
My System:
Vista & VB2008
Referencing seems OK.
Can anybody help me?
Thanks!
BTW: Great work.
April 21st, 2008 at 8:51 am
Clear and straight to the point
thanx
April 27th, 2008 at 10:26 am
YOU ARE THE BEST …
YOU ARE THE BEST …
YOU ARE THE BEST …
YOU ARE THE BEST …
May 1st, 2008 at 6:33 pm
Way Cool! I’d forgotten how easy it is to do things in Visual Basic.
I have the latest version of MySQL and just installed the most recent VB Express (which took forever).
Then, a few minutes with this tutorial and I’m connected!!
I’ve been doing MySQL connections with PHP (of course), Perl and Java. Now I’m doing it with VB.
Thank you.
May 3rd, 2008 at 4:30 pm
My Problem is solved!
It was the binding IP of the MySql-Server!
Great tutorial!
MrBarnickle!