VB2019 VB2017 VB2015 VB2013 VB2012 VB2010 VB2008 VB6 VB Sample Codes 中文VB About Us

Lesson 34 Introduction to Database


34.1 Introduction to Database in Visual Basic 2015

In our daily life, we deal with various data such as names, addresses, money, date, stock quotes, statistics and more. If you are in business or working as a professional, you have to handle even more data. For example, a doctor needs to keep track of patients’ personal and medical information such as names, addresses, phone numbers as well as blood pressure readings, blood sugar readings, surgical history, medicines prescribed in the past and more. On the other hand, businesses usually have to manage a large amount of data pertaining to products and customers. All these data need to be organized into a database for the ease of data management.

In the past , people usually deal with data manually like using cards and folders. However, in present Information age, it is no longer feasible to manage data manually. Most data are now managed using computer-based database management systems. Computer-based Database management systems can handle data much faster and more efficient than human beings do. With the advent of the network and the Internet technologies, data can now be managed locally and remotely.

Database management systems are usually used in running payroll system, inventory system, accounting system, payment system, order handling system, customer relationship management system(CRM) and more. Some of the commercial database management system(DBMS) are Oracle, Microsoft SQL server and Microsoft Access.

34.2 Creating a Database Application in Visual Basic 2015

A database management system typically deals with storing, modifying, and extracting information from a database. It can also add, edit and delete records from the database. However, a DBMS can be very difficult to handle by ordinary people or businessmen who have no technological backgrounds. Fortunately, we can create user-friendly database applications to handle the aforementioned jobs with the DBMS running in the background. One of the best programs that can create such database application is none other than Visual Basic 2015.

Visual Basic 2015 uses ADO.NET to handle databases. ADO.NET is Microsoft’s latest database technology which can work with many other advanced database management systems such as Microsoft SQL server. In this Lesson, we will develop codes that make use of Microsoft SQL Server 2015, therefore you need to have Microsoft SQL Server 2012 installed in your PC,  you can download Microsoft SQL Server 2012 Express  for free  from https://www.microsoft.com/en-us/download/details.aspx?id=29062.

To build a database project , launch Visual Basic 2015. Name your project Database Project 1 or whatever name you wish to call it. Next, change the default form’s Text property to Contacts. There are a few objects in ADO.NET that are required to build the database. There are:

The aforementioned objects belongs to the System.Data and the System.Xml namespace. Therefore, we need to reference them in the beginning before we can work with them. To reference the ADO.NET object, choose project from the menu then select Database Project 1 properties to display the project properties. Next click the References tab to show the active references for the project, as shown in Figure 34.1

VB2013_figure33.1
Figure 34.1

Under imported namespaces, make sure system.data, System.Data.Sqlclient is selected, otherwise, check them. Having done that you need to click the Save All button on the toolbar and then return to the Visual Basic 2015 IDE. We shall proceed to create a connection to the database source file in the next Lesson.


❮ Previous Lesson Next Lesson ❯


Copyright©2008 Dr.Liew Voon Kiong. All rights reserved |Contact|Privacy Policy