diff options
author | MW | 2007-08-16 11:24:40 +0000 |
---|---|---|
committer | MW | 2007-08-16 11:24:40 +0000 |
commit | b6c48c53b21df9dbde4549bced938089f43ed1f0 (patch) | |
tree | 5d38907da35e2c6e30ab8a8ac41437c71d851a3c /OpenSim/Region/Examples | |
parent | The 'Party Party Groupie Groupie Life is a game' commit: (diff) | |
download | opensim-SC_OLD-b6c48c53b21df9dbde4549bced938089f43ed1f0.zip opensim-SC_OLD-b6c48c53b21df9dbde4549bced938089f43ed1f0.tar.gz opensim-SC_OLD-b6c48c53b21df9dbde4549bced938089f43ed1f0.tar.bz2 opensim-SC_OLD-b6c48c53b21df9dbde4549bced938089f43ed1f0.tar.xz |
Can now set the plugins for standalone mode's Inventory database (default sqlite) and for its user database (default DB4o). Currently changing the user plugin to MySql should work (if you have MySql setup (should be same as for grid mode). There is also a MySql provider for the inventory but not 100% certain if that is finished and functional (will need to check with Adam on that).
Diffstat (limited to 'OpenSim/Region/Examples')
-rw-r--r-- | OpenSim/Region/Examples/SimpleApp/Program.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Examples/SimpleApp/Program.cs b/OpenSim/Region/Examples/SimpleApp/Program.cs index f064eaa..64fe975 100644 --- a/OpenSim/Region/Examples/SimpleApp/Program.cs +++ b/OpenSim/Region/Examples/SimpleApp/Program.cs | |||
@@ -47,7 +47,8 @@ namespace SimpleApp | |||
47 | { | 47 | { |
48 | base.StartUp(); | 48 | base.StartUp(); |
49 | 49 | ||
50 | m_commsManager = new CommunicationsLocal(m_networkServersInfo, m_httpServer, m_assetCache, false, ""); | 50 | CommunicationsLocal.LocalSettings settings = new CommunicationsLocal.LocalSettings("", false, "", ""); |
51 | m_commsManager = new CommunicationsLocal(m_networkServersInfo, m_httpServer, m_assetCache, settings); | ||
51 | 52 | ||
52 | m_log.Notice(m_log.LineInfo); | 53 | m_log.Notice(m_log.LineInfo); |
53 | 54 | ||