Problem using SQLite :memory: with NHibernate

前端 未结 9 1111
春和景丽
春和景丽 2020-12-02 08:28

I use NHibernate for my dataacess, and for awhile not I\'ve been using SQLite for local integration tests. I\'ve been using a file, but I thought I would out the :memory: o

9条回答
  •  情书的邮戳
    2020-12-02 09:07

    Just a wild guess, but is the sql output by NHibernate using a command unsupported by sqlite?

    Also, What happens if you use a file instead of memory? (System.IO.Path.GetTempFileName() would work i think...)

提交回复
热议问题