上一页 1 ··· 3 4 5 6 7
摘要: SQLite is a lightweight, server-less database, it's great for embedding into client application. It works across Windows, iOS, Android, browers.Code snippetsCreate database connectionvar connection = new SQLiteAsyncConnection("testdb.sqlite");Create tableawait connection.CreateTableAyn 阅读全文
posted @ 2013-10-05 10:36 MinieGoGo 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 1.Install SQLite for Windows Phone SDKC:\Program Files (x86)\Microsoft SDKs\Windows Phone\v8.0\ExtensionSDKs2.Install sqlite-net NuGet package3.Install sqlite-net-wp8 C++ wrapper from https://github.com/peterhuene/sqlite-net-wp8.git4.Add the SQLite project reference and windows phone extension SDK r 阅读全文
posted @ 2013-10-05 04:46 MinieGoGo 阅读(183) 评论(0) 推荐(0) 编辑
摘要: >adb shell# ls /data/data/PACKAGE_NAME/databases# exit// pull it>adb pull /data/data/PACKAGE_NAME/databases/DB_NAME.db 阅读全文
posted @ 2013-10-04 10:51 MinieGoGo 阅读(149) 评论(0) 推荐(0) 编辑
摘要: Why?1 reason MVVM works really well with XAML based applications is because of the powerful XAML binding features. This allows the View (the presentation of to the user) to be separated from the data and the logic. The View can be designed in Expression Blend while the ViewModel can be developed in 阅读全文
posted @ 2013-10-02 15:36 MinieGoGo 阅读(209) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7