To convert an existing ADO.NET application to use the Mimer SQL Data Provider, in general, you need to take the following steps:
Replace all references of Vendor.Data.Client with Mimer.Data.Client. This includes both using clauses and references that use full names.
Then you should turn your attention to the ADO.NET names of data types used by the provider. These are called xxxDbType or xxxType. You must convert the data types to the names used by the Mimer SQL Data Provider. These are documented in the MimerDbType enumeration.
Then you should replace all object references with prefix xxx to prefix Mimer, which is used by the Mimer SQL Data Provider.
For example, change xxxCommand to MimerCommand and so on.
In the ConnectionString property of the MimerConnection object choose the database to work with.
Test your application thoroughly.
Guidelines for individual providers are given in the following sections.