Since Wix SqlExtension does not allow you to set the type of provider, I doubt very much that this is possible. Also, you will not be able to program and query the user for data in the Wix installer, since AFAIK is not supported (well, I never developed how to do this!).
Depending on what you are doing with the data you want to query, you have several options.
- If you need to save the data back to Access Db, I would say that your best option for this is to enable the data setting the first time you launch your application (or create a one-time launch setup application) and use wix to automatically start at the end of it at the end of your installation .
- The second option is to use Burn to create a more user-friendly .net-based installer that downloads the msi created in your application, at the same time capturing the data you need and doing everything you need to do this.
source share