diff options
author | Justin Clark-Casey (justincc) | 2010-04-23 22:06:02 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-04-23 22:06:02 +0100 |
commit | 15d42d211161b304bc4281018b891a063be4612d (patch) | |
tree | 4f88bba4a0b074a88fc214340e144cd9c958de3a /bin/config-include/storage | |
parent | remove [DatabaseService] section from OpenSim.ini since this is always presen... (diff) | |
download | opensim-SC_OLD-15d42d211161b304bc4281018b891a063be4612d.zip opensim-SC_OLD-15d42d211161b304bc4281018b891a063be4612d.tar.gz opensim-SC_OLD-15d42d211161b304bc4281018b891a063be4612d.tar.bz2 opensim-SC_OLD-15d42d211161b304bc4281018b891a063be4612d.tar.xz |
Add instructions for using SQLiteNG to OpenSim.ini and config-include/StandaloneCommon.ini
Unfortunately, database settings need to be changed in two places.
Diffstat (limited to 'bin/config-include/storage')
-rw-r--r-- | bin/config-include/storage/SQLiteNGStandalone.ini | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/bin/config-include/storage/SQLiteNGStandalone.ini b/bin/config-include/storage/SQLiteNGStandalone.ini new file mode 100644 index 0000000..ba00aca --- /dev/null +++ b/bin/config-include/storage/SQLiteNGStandalone.ini | |||
@@ -0,0 +1,16 @@ | |||
1 | ; These are the initialization settings for running OpenSim Standalone with an SQLite database | ||
2 | |||
3 | [DatabaseService] | ||
4 | StorageProvider = "OpenSim.Data.SQLiteNG.dll" | ||
5 | |||
6 | [AvatarService] | ||
7 | ConnectionString = "URI=file:avatars.db,version=3" | ||
8 | |||
9 | [AuthenticationService] | ||
10 | ConnectionString = "URI=file:auth.db,version=3" | ||
11 | |||
12 | [UserAccountService] | ||
13 | ConnectionString = "URI=file:userprofiles.db,version=3" | ||
14 | |||
15 | [FriendsService] | ||
16 | ConnectionString = "URI=file:friends.db,version=3" | ||