简体   繁体   中英

How to store data in windows application

I have worked with databases in my applications but I have only created private use applications so far. Every time I use an access database in my application, I had to install drivers for JET engine on the end user computer. I would like to know more about how to store data on the end user computer without having them to install anything but just the application. It would be great if the data management technique is light and fast.

If you need a client-side SQL database then you could take a look at SQLite . Databases are just single files, you ship with one tiny library and save all the hassle of installing system-wide components no one else really uses either.

Of course, “data” is a very broad range of meanings so it all depends on what you need and for what purpose. But to replace a JET database SQLite should be very suitable.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM