mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 17:55:48 +08:00
fix nhibernate driver so that it starts (based on the appearance
changes it wouldn't come up). include embedded dialect specific sql files for nhibernate migrations figure out how to get the raw db connection so that migrations can work with nhibernate. create initial migration for NHibernate + SQLite + Assets.
This commit is contained in:
@@ -227,10 +227,11 @@ namespace OpenSim.Data
|
||||
|
||||
foreach (string s in names)
|
||||
{
|
||||
m_log.InfoFormat("[MIGRATION] - testing resoure {0}", s);
|
||||
Match m = _match.Match(s);
|
||||
if (m.Success)
|
||||
{
|
||||
// m_log.Info("MIGRATION: Match: " + m.Groups[1].ToString());
|
||||
m_log.Info("MIGRATION: Match: " + m.Groups[1].ToString());
|
||||
int version = int.Parse(m.Groups[1].ToString());
|
||||
if (version > after) {
|
||||
using (Stream resource = _assem.GetManifestResourceStream(s))
|
||||
|
||||
Reference in New Issue
Block a user