任何机构都可以帮助我,如何以编程方式创建简单的数据库和表,并使用monotouch在sqlite中逐步过程插入值。我是这项技术的新手。 谢谢..
答案 0 :(得分:3)
如果您正在使用sqlite-net(我强烈推荐),您只需致电:
public class Stock
{
[PrimaryKey, AutoIncrement]
public int Id { get; set; }
[MaxLength(8)]
public string Symbol { get; set; }
}
var db = new SQLiteConnection("stocks.db");
db.CreateTable<Stock>();
var s = db.Insert(new Stock() {
Symbol = symbol });
return db.Query(“select * from Valuation where StockId =?”,stock.Id);