Notes for using sqlite in WP8

来源:互联网 发布:哪种飞机杯最好用 知乎 编辑:程序博客网 时间:2024/05/21 05:19


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 nuget https://www.nuget.org/packages/sqlite-net-wp8/

4. Add SQLite.cs to project

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

6. Add conditional USE_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



0 0
原创粉丝点击