编写脚本创建SQLite数据库
本文关键字:SQLite 数据库 创建 脚本 | 更新日期: 2023-09-27 17:51:15
我正在生成Schema。sql文件,我想以编程方式创建sql数据库文件,并执行所有的sql语句从文件。
谢谢
您可以使用SchemaExport类来生成脚本,并/或将它们应用到数据库:http://nhibernate.info/doc/tutorials/first-nh-app/your-first-nhibernate-based-application.html
public class GenerateSchema_Fixture
{
[Test]
public void Can_generate_schema()
{
var cfg = new Configuration();
cfg.Configure();
cfg.AddAssembly(typeof (Product).Assembly);
new SchemaExport(cfg).Execute(true /*script*/, true /*export to db*/,
false /*just drop*/, true /*format schema*/);
}
}