Notes for using sqlite in WP8

前端之家收集整理的这篇文章主要介绍了Notes for using sqlite in WP8前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


Notes for using sqlite in WP8 project:

1. install "Precompiled Binaries for Windows Phone 8" from http://www.sqlite.org/download.html

2. in VS,add reference to "sqlite windows phone runtime"

3. Install nugethttps://www.nuget.org/packages/sqlite-net-wp8/

4. Addsqlite.cs to project

5. configure project to use x86 (for emulator) or ARM (for device)

6. Add conditionalUSE_WP8_NATIVE_sqlITE for both Debug and Release configuration

references:https://github.com/peterhuene/sqlite-net-wp8

7. have to call CreateTable before insert command,otherwise will get a sqlite error with message "Constraint". As per comments,CreateTable method only create table if not exists.

references: http://stackoverflow.com/questions/17685054/sqlite-database-insert-error-constraint

原文链接:https://www.f2er.com/sqlite/200773.html

猜你在找的Sqlite相关文章