aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin
diff options
context:
space:
mode:
authorSean Dague2008-04-23 20:48:23 +0000
committerSean Dague2008-04-23 20:48:23 +0000
commit3dd98a112f4308532d768943690b13c403dff68b (patch)
tree6c33ceb05d8c431720ffca11be2d025a1782fc78 /bin
parentchanges to allow asset_source to be specified in the opensim.ini (diff)
downloadopensim-SC_OLD-3dd98a112f4308532d768943690b13c403dff68b.zip
opensim-SC_OLD-3dd98a112f4308532d768943690b13c403dff68b.tar.gz
opensim-SC_OLD-3dd98a112f4308532d768943690b13c403dff68b.tar.bz2
opensim-SC_OLD-3dd98a112f4308532d768943690b13c403dff68b.tar.xz
allow for Inventory database source to be specified in main
configs. This works with sqlite and nhibernate backends, and stays with default seperate ini files for mysql and mssql until someone writes those.
Diffstat (limited to 'bin')
-rw-r--r--bin/OpenSim.ini.example7
1 files changed, 6 insertions, 1 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index bced391..5a15c85 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -104,13 +104,18 @@ welcome_message = "Welcome to OpenSim"
104; Asset database provider 104; Asset database provider
105asset_plugin = "OpenSim.Data.SQLite.dll" 105asset_plugin = "OpenSim.Data.SQLite.dll"
106; asset_plugin = "OpenSim.Data.MySQL.dll" 106; asset_plugin = "OpenSim.Data.MySQL.dll"
107
107; the Asset DB source. This only works for sqlite and nhibernate for now 108; the Asset DB source. This only works for sqlite and nhibernate for now
108asset_source = "URI=file:Asset.db,version=3" 109; Asset Source SQLite Exampe
110; asset_source = "URI=file:Asset.db,version=3"
111; Asset Source NHibernate Example (DIALECT;DRIVER;CONNECTSTRING)
112; asset_source = "SQLiteDialect;SqliteClientDriver;URI=file:Asset.db,version=3"
109 113
110; Inventory database provider 114; Inventory database provider
111inventory_plugin = "OpenSim.Data.SQLite.dll" 115inventory_plugin = "OpenSim.Data.SQLite.dll"
112; inventory_plugin = "OpenSim.Data.MySQL.dll" 116; inventory_plugin = "OpenSim.Data.MySQL.dll"
113 117
118
114; User Data Database provider 119; User Data Database provider
115userDatabase_plugin = "OpenSim.Data.SQLite.dll" 120userDatabase_plugin = "OpenSim.Data.SQLite.dll"
116; userDatabase_plugin = "OpenSim.Data.MySQL.dll" 121; userDatabase_plugin = "OpenSim.Data.MySQL.dll"