如何使用monotouch以编程方式在sqlite中创建数据库和表?

时间:2011-10-31 10:15:50

标签: sqlite xamarin.ios

任何机构都可以帮助我,如何以编程方式创建简单的数据库和表,并使用monotouch在sqlite中逐步过程插入值。我是这项技术的新手。 谢谢..

1 个答案:

答案 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);