aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/config-include
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-04-30 17:45:00 +0100
committerJustin Clark-Casey (justincc)2010-04-30 19:28:28 +0100
commit56fe4c24b8c67ec3b6a5a897c35ab19507bd1077 (patch)
tree8feccd68058c70da1b96d8b6e804aa4afa6dc723 /bin/config-include
parentadd Mono.Data.Sqlite.dll (diff)
downloadopensim-SC-56fe4c24b8c67ec3b6a5a897c35ab19507bd1077.zip
opensim-SC-56fe4c24b8c67ec3b6a5a897c35ab19507bd1077.tar.gz
opensim-SC-56fe4c24b8c67ec3b6a5a897c35ab19507bd1077.tar.bz2
opensim-SC-56fe4c24b8c67ec3b6a5a897c35ab19507bd1077.tar.xz
rename SQLiteNG to SQLite and SQLite to SQLiteLegacy this seems the least evil way forward since mono 2.6 and later will see increasing usage, and this only works with what was
SQLiteNG MAC USERS WILL NEED TO CHANGE REFERENCES TO "OpenSim.Data.SQLite.dll" to "OpenSim.Data.SQLiteLegacy.dll" in OpenSim.ini and config-include/StandaloneCommon.ini (if using standalone) See the OpenSim.ini.example and StandaloneCommon.ini.example files for more details This commit also temporarily changes unsigned ParentEstateID values in the OpenSim.Data.Tests to signed temporarily, since the new plugin enforces creation of signed fields in the database (which is what the SQL actually specifies). And change data columns in sqlite is a pita.
Diffstat (limited to 'bin/config-include')
-rw-r--r--bin/config-include/StandaloneCommon.ini.example12
1 files changed, 10 insertions, 2 deletions
diff --git a/bin/config-include/StandaloneCommon.ini.example b/bin/config-include/StandaloneCommon.ini.example
index 1679f93..40ef228 100644
--- a/bin/config-include/StandaloneCommon.ini.example
+++ b/bin/config-include/StandaloneCommon.ini.example
@@ -4,7 +4,15 @@
4 ; 4 ;
5 ;--- For SQLite 5 ;--- For SQLite
6 StorageProvider = "OpenSim.Data.SQLite.dll" 6 StorageProvider = "OpenSim.Data.SQLite.dll"
7 ;--- For MySql 7
8 ; Unfortunately the current SQLite database plugin is not compatible with Mac OSX. You can still use the older
9 ; legacy sqlite library if you are using Mono 2.4. Please see the notes in OpenSim.ini (search for sqlite)
10 ; for more details
11 ;StorageProvider = "OpenSim.Data.SQLiteLegacy.dll";
12
13 ; MySql
14 ; Uncomment these lines if you want to use mysql storage
15 ; Change the connection string to your db details
8 ;StorageProvider = "OpenSim.Data.MySQL.dll" 16 ;StorageProvider = "OpenSim.Data.MySQL.dll"
9 ;ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=***;" 17 ;ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=***;"
10 18
@@ -42,4 +50,4 @@
42 50
43[LibraryModule] 51[LibraryModule]
44 ; Set this if you want to change the name of the OpenSim Library 52 ; Set this if you want to change the name of the OpenSim Library
45 ;LibraryName = "My World's Library" \ No newline at end of file 53 ;LibraryName = "My World's Library"