29.1 Introduction to Database in Visual Basic 2010
In our daily life, we deal with many types of information or 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 need 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 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 day fast pace global environment and
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. Companies usually invest heavily in database management
systems in order to run the organizations efficiently and effectively.
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
29.2 Creating a Database Application in Visual Basic 2010
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 business men 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 2010.
Visual Basic 2010 uses ADO.NET to handle databases. ADO.NET is
Microsoft’s latest database technology which can works with many other
advanced database management system such as Microsoft SQL server. In
this lesson, we will develop codes that make use of Microsoft SQL Server
2008, therefore you need to have Microsoft SQL Server 2008 installed in
your PC, otherwise you can download it from http://www.microsoft.com/en-us/download/details.aspx?id=1695. Besides, you might want to download Microsoft SQL Server 2008 Management Studio Express, the SQL database management system that allows you to create and manage databases.
- SqlConnection- to connect to a data source in SQL Server
- DataTable -to store data for navigation and manipulation
- DataAdapter- to populate a DataReader

Under imported namespaces, make sure system.data, System.Data.Sqlclient are 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 2010 IDE.
We shall proceed to create connection to the database source file in the next lesson.
0 comments :
Post a Comment