Can any body help me about, how to create simple database and tables programatically and insert values ,step by step procedure in sqlite using monotouch.I am new to this technology . Thank you..
相关问题
- SQL/SQL-LITE - Counting records after filtering
- What SQLite NuGet package do I need
- How to write the array into the sqlite database fo
- Groupwise MAX() on a subquery
- System.IO.MemoryMappedFiles on MonoTouch?
If you're using sqlite-net (which I highly recommend) you can simply call:
Model
Create
Insert
Query
return db.Query ("select * from Valuation where StockId = ?", stock.Id);