DigiOz MySQL DLL Version 1.0.0 (for .NET 2.0)
==============================================

DLL Name: digiozmysqldll.dll
Purpose:  To allow for each insert, update and delete of records in and out of MySQL Database using the MySQL .NET 1.0.8 Connector. 

How to Use it
=============

1- Start a new VB.NET Windows Application Solution.

2- Open the "Solution Explorer" window.

3- Right-Click on References Folder inside of Solution Explorer for your project.

4- Select "Add Reference" from the menu given. 

5- Click on the "Projects" Tab, and click on "Browse" button.

6- Find the digiozmysqldll.dll file from the location you downloaded and saved it to, select it and hit Open.

Sample usage of this DLL:
=========================
Dim db1 As New dbClass

db1.dbhost = "localhost"
db1.dbname = "databaseName"
db1.dbuser = "root"
db1.dbpass = "yourPassword"

db1.openConnection()
db1.QueryDBDataset("SELECT * FROM `TableName`;")
DataGridView1.DataSource = db1.ds.Tables(0)
db1.closeConnection()








