diff options
Diffstat (limited to '')
-rw-r--r-- | bin/config-include/storage/SQLiteLegacyStandalone.ini | 17 | ||||
-rw-r--r-- | bin/config-include/storage/SQLiteStandalone.ini | 26 |
2 files changed, 43 insertions, 0 deletions
diff --git a/bin/config-include/storage/SQLiteLegacyStandalone.ini b/bin/config-include/storage/SQLiteLegacyStandalone.ini new file mode 100644 index 0000000..facbbd6 --- /dev/null +++ b/bin/config-include/storage/SQLiteLegacyStandalone.ini | |||
@@ -0,0 +1,17 @@ | |||
1 | ; These are the initialization settings for running OpenSim Standalone with an SQLite database | ||
2 | |||
3 | [DatabaseService] | ||
4 | StorageProvider = "OpenSim.Data.SQLiteLegacy.dll" | ||
5 | ConnectionString = "URI=file:OpenSim.db,version=3,UseUTF16Encoding=True" | ||
6 | |||
7 | [AvatarService] | ||
8 | ConnectionString = "URI=file:avatars.db,version=3" | ||
9 | |||
10 | [AuthenticationService] | ||
11 | ConnectionString = "URI=file:auth.db,version=3" | ||
12 | |||
13 | [UserAccountService] | ||
14 | ConnectionString = "URI=file:userprofiles.db,version=3" | ||
15 | |||
16 | [FriendsService] | ||
17 | ConnectionString = "URI=file:friends.db,version=3" | ||
diff --git a/bin/config-include/storage/SQLiteStandalone.ini b/bin/config-include/storage/SQLiteStandalone.ini new file mode 100644 index 0000000..10e6991 --- /dev/null +++ b/bin/config-include/storage/SQLiteStandalone.ini | |||
@@ -0,0 +1,26 @@ | |||
1 | ; These are the initialization settings for running OpenSim Standalone with an SQLite database | ||
2 | |||
3 | [DatabaseService] | ||
4 | StorageProvider = "OpenSim.Data.SQLite.dll" | ||
5 | ConnectionString = "URI=file:OpenSim.db,version=3,UseUTF16Encoding=True" | ||
6 | |||
7 | [InventoryService] | ||
8 | ;ConnectionString = "URI=file:inventory.db,version=3" | ||
9 | ; if you have a legacy inventory store use the connection string below | ||
10 | ConnectionString = "URI=file:inventory.db,version=3,UseUTF16Encoding=True" | ||
11 | |||
12 | [AvatarService] | ||
13 | ConnectionString = "URI=file:avatars.db,version=3" | ||
14 | |||
15 | [AuthenticationService] | ||
16 | ConnectionString = "URI=file:auth.db,version=3" | ||
17 | |||
18 | [UserAccountService] | ||
19 | ConnectionString = "URI=file:userprofiles.db,version=3" | ||
20 | |||
21 | [GridUserService] | ||
22 | ConnectionString = "URI=file:griduser.db,version=3" | ||
23 | |||
24 | [FriendsService] | ||
25 | ConnectionString = "URI=file:friends.db,version=3" | ||
26 | |||