A new SQLite wrapper for Windows Phone 8 and Windows 8 – The basics
Came across this goodie… these are the basic operations
- Opening a database (wraps the sqlite3_open_v2 function)
- Executing a single SQL statement (wraps the sqlite3_exec function)
- Creating a complex SQL statement (wraps the sqlite3_prepare16_v2 function)
- Binding parameters to a statement (wraps the sqlite3_bind_xyz functions)
- Iterating over statement results (wraps the sqlite3_step and sqlite3_column_xyz functions)
you can get the latest from codeplex. https://sqlwinrt.codeplex.com/wikipage?version=12
CHECK OUT THESE ADDITIONAL ZERO-COST RESOURCES.
- Think blue sky with Azure free trial
- Freedom of Expression with Visual Studio Express 2012
- Tools and SDKs from the Windows Developer Center
- A 30-day Windows App Adventure
- Tools and SDKs from the Phone Developer Center
- A 30-day Phone App Adventure
Comments
- Anonymous
June 30, 2013
How to check particular table available or not in database?