I am developing a Sales application with MS Access Database. I've added Data Source through wizard and created forms with Data Set.
It is sometimes required to do some other query/dml inside the form code. Is it possible to use the same Connection as my application is using or I've to open a new connection based on my settings and perform a query/DML e.g.
It is sometimes required to do some other query/dml inside the form code. Is it possible to use the same Connection as my application is using or I've to open a new connection based on my settings and perform a query/DML e.g.
VB.NET:
Dim conn As New OleDb.OleDbConnection(WindowsApplication1.My.Settings.salesConnectionString)
conn.Open()
Last edited: