编写SQLite数据库创建脚本

时间:2013-01-11 07:36:58

标签: c# sqlite nhibernate

我正在生成Schema.sql文件,我想以编程方式创建sqlite db文件并从文件中执行所有sql语句。

感谢

1 个答案:

答案 0 :(得分:1)

您可以使用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*/);
    }
}