diff options
author | Sean Dague | 2008-05-06 18:22:26 +0000 |
---|---|---|
committer | Sean Dague | 2008-05-06 18:22:26 +0000 |
commit | 81056717e07d86e28a935cda989584e2a9385183 (patch) | |
tree | 8b6696e453f3346dec86949dfd04d021f2fac218 /bin | |
parent | * Cleaning up code, making it conform to OpenSim standards. (diff) | |
download | opensim-SC_OLD-81056717e07d86e28a935cda989584e2a9385183.zip opensim-SC_OLD-81056717e07d86e28a935cda989584e2a9385183.tar.gz opensim-SC_OLD-81056717e07d86e28a935cda989584e2a9385183.tar.bz2 opensim-SC_OLD-81056717e07d86e28a935cda989584e2a9385183.tar.xz |
added nhibernate examples
Diffstat (limited to '')
-rw-r--r-- | bin/OpenSim.ini.example | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index 5a15c85..2736405 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example | |||
@@ -103,7 +103,8 @@ welcome_message = "Welcome to OpenSim" | |||
103 | 103 | ||
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" ; for mysql |
107 | ; asset_plugin = "OpenSim.Data.NHibernate.dll" ; for nhibernate | ||
107 | 108 | ||
108 | ; the Asset DB source. This only works for sqlite and nhibernate for now | 109 | ; the Asset DB source. This only works for sqlite and nhibernate for now |
109 | ; Asset Source SQLite Exampe | 110 | ; Asset Source SQLite Exampe |
@@ -114,11 +115,18 @@ asset_plugin = "OpenSim.Data.SQLite.dll" | |||
114 | ; Inventory database provider | 115 | ; Inventory database provider |
115 | inventory_plugin = "OpenSim.Data.SQLite.dll" | 116 | inventory_plugin = "OpenSim.Data.SQLite.dll" |
116 | ; inventory_plugin = "OpenSim.Data.MySQL.dll" | 117 | ; inventory_plugin = "OpenSim.Data.MySQL.dll" |
118 | ; inventory_plugin = "OpenSim.Data.NHibernate.dll" ; for nhibernate | ||
119 | ; Inventory Source NHibernate Example (DIALECT;DRIVER;CONNECTSTRING) | ||
120 | ; inventory_source = "SQLiteDialect;SqliteClientDriver;URI=file:Inventory.db,version=3" | ||
117 | 121 | ||
118 | 122 | ||
119 | ; User Data Database provider | 123 | ; User Data Database provider |
120 | userDatabase_plugin = "OpenSim.Data.SQLite.dll" | 124 | userDatabase_plugin = "OpenSim.Data.SQLite.dll" |
121 | ; userDatabase_plugin = "OpenSim.Data.MySQL.dll" | 125 | ; userDatabase_plugin = "OpenSim.Data.MySQL.dll" |
126 | ; userDatabase_plugin = "OpenSim.Data.NHibernate.dll" ; for nhibernate | ||
127 | ; User Source NHibernate Example (DIALECT;DRIVER;CONNECTSTRING) | ||
128 | ; user_source = "SQLiteDialect;SqliteClientDriver;URI=file:User.db,version=3" | ||
129 | |||
122 | 130 | ||
123 | default_location_x = 1000 | 131 | default_location_x = 1000 |
124 | default_location_y = 1000 | 132 | default_location_y = 1000 |