VB.NET: SQLite to MSSQL
Posted
by
user1736785
on Stack Overflow
See other posts from Stack Overflow
or by user1736785
Published on 2012-10-11T03:33:59Z
Indexed on
2012/10/11
3:37 UTC
Read the original article
Hit count: 161
I have a vb.net project that uses a SQLite database. I do this by using dataset/table adapters. The client is happy and all works well. However I have just heard that they plan on providing this product to another customer that wishes to use their MSSQL database. So I am writing this post so I can mentally prepare for this before I begin. I am not a database pro and have really enjoyed the simplicity of setting up and managing an SQLite database.
So any ideas on the easiest way to support MSSQL as well? I am happy to run them parallel to each other. Can I just make a separate service / middleware that syncs the SQLite database to the MSSQL on a timer and does not care about what the main app is up to?
Any pointers are appreciated.
© Stack Overflow or respective owner