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..
Can any body help me about, how to create simple database and tables programatically
Share
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);