VB.NET tutorial: connect to database |
|||||||||||||||||||||||||||
DictionaryConnect to database fileThe code below will help you to connect to the database file and retrieve data to put in the Lstterm listbox: -Double-click on the form to open the code window -In Declarations section type the following code:
'declare global variables This code will declare cn variable as the OleDbConnection class, reader variable as OleDbReader class, com variable as OleDbReader Class, rs variable as DatSet class, and ad as OleDbDataAdapter classs. These variables will be used to create their objects of their types. -Create a procedure called myconnect and type the code as shown below:
Sub myconnect()
ad.Fill(rs,"Tblterms") The code starts by creating a DataSet object to store the table got from the database and a connection object to connect to the database file:
rs = New DataSet cn.Open() The Adapter object is created to get data from the Tblterms table and the data is filled to the DataSet object rs by using the Fill() method of the adapter:
ad = New OleDb.OleDbDataAdapter("SELECT * FROM Tblterms ORDER BY Enterms, cn) The Command object com also is also created to get data from the table and populate the list box:
com = New OleDb.OleDbCommand("SELECT Enterms FROM Tblterms ORDER BY Enterms",
cn)
The search text box is set the focus to make sure that the cursor is active
in this box for text input. By putting the procedure myconnect() in the form load event, the list box Lstterms will be populated by the English words:
Private Sub Dic_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load Now you have data filled in the list box Lstterms when the form loads. The next phase is to write some VB code to create a workable search text box.
|
| ||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||