任何机构都可以帮助我,如何使用monotouch在sqlite中以编程方式创建简单的数据库和表并插入值,一步一步的过程.我是这项技术的新手.谢谢..
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..
如果您使用的是 sqlite-net(我强烈推荐)你可以简单地调用:
If you're using sqlite-net (which I highly recommend) you can simply call:
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);
return db.Query ("select * from Valuation where StockId = ?", stock.Id);
这篇关于如何使用monotouch以编程方式在sqlite中创建数据库和表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
我可以在不编写 SQL 查询的情况下找出数据库列表Can I figure out a list of databases and the space used by SQL Server instances without writing SQL queries?(我可以在不编写 SQL 查询的情况下
如何创建对 SQL Server 实例的登录?How to create a login to a SQL Server instance?(如何创建对 SQL Server 实例的登录?)
如何通过注册表搜索知道SQL Server的版本和版本How to know the version and edition of SQL Server through registry search(如何通过注册表搜索知道SQL Server的版本和版本)
WinForms 应用程序设计——将文档从 SQL Server 移动WinForms application design - moving documents from SQL Server to file storage(WinForms 应用程序设计——将文档从 SQL Server 移动到文件存
有没有办法使用 SQL 获取有关服务器的信息Is there a way to get information about a server using SQL(有没有办法使用 SQL 获取有关服务器的信息)
Sqlite Window Phone 8 中的更新记录Update Record in Sqlite Window Phone 8(Sqlite Window Phone 8 中的更新记录)