diff options
author | Sean Dague | 2008-04-23 20:48:23 +0000 |
---|---|---|
committer | Sean Dague | 2008-04-23 20:48:23 +0000 |
commit | 3dd98a112f4308532d768943690b13c403dff68b (patch) | |
tree | 6c33ceb05d8c431720ffca11be2d025a1782fc78 /bin/OpenSim.ini.example | |
parent | changes to allow asset_source to be specified in the opensim.ini (diff) | |
download | opensim-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 '')
-rw-r--r-- | bin/OpenSim.ini.example | 7 |
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 |
105 | asset_plugin = "OpenSim.Data.SQLite.dll" | 105 | asset_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 |
108 | asset_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 |
111 | inventory_plugin = "OpenSim.Data.SQLite.dll" | 115 | inventory_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 |
115 | userDatabase_plugin = "OpenSim.Data.SQLite.dll" | 120 | userDatabase_plugin = "OpenSim.Data.SQLite.dll" |
116 | ; userDatabase_plugin = "OpenSim.Data.MySQL.dll" | 121 | ; userDatabase_plugin = "OpenSim.Data.MySQL.dll" |