SVDBConnection
Functions to manipulate the connection to a database:
. Delete
Function to delete entries from the database.
. Insert
Function to insert entries to the database.
Function to select values in the database.
. Update
Function to update the database.
The parameter connString used in the functions is the value in Connection String from the Database Document.
If there is a path in the connection string you have to replace "\" with "\\", for example:
"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Acces.accdb" needs to be "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\\Acces.accdb"