Home>Topic List>How to connect vb to access database

How to connect vb to access database

vb connection access database method: 1. Use ADO connection, first import the System.Data.OleDb module, then define a connection string, then create an OleDbConnection object and use the Open() method to open the connection; 2. Use DAO connection, first import Microsoft.Jet.OLEDB module, then define a connection string, then create a JetConnection object and use the Open() method to open the connection.