SQLiteStandalone.ini 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. ; These are the initialization settings for running OpenSim Standalone with an SQLite database
  2. [DatabaseService]
  3. StorageProvider = "OpenSim.Data.SQLite.dll"
  4. ConnectionString = "URI=file:OpenSim.db,version=3,UseUTF16Encoding=True"
  5. [AssetService]
  6. ConnectionString = "URI=file:Asset.db,version=3"
  7. ; The HGAssetService section controls the connection given to the AssetService in a Hypergrid configuration.
  8. ; This has to be separate from [AssetService] because the Hypergrid facing connector uses [HGAssetService] for its config data instead.
  9. ; However, the internal asset service will still use the [AssetService] section.
  10. ; Therefore, you will almost certainly want the ConnectionString in [HGAssetService] to be the same as in [AssetService]
  11. ; so that they both access the same database.
  12. ; This issue does not apply to normal MySQL/MSSQL configurations, since by default they use the settings in [DatabaseService] and
  13. ; do not have separate connection strings for different services.
  14. [HGAssetService]
  15. ConnectionString = "URI=file:Asset.db,version=3"
  16. [InventoryService]
  17. ;ConnectionString = "URI=file:inventory.db,version=3"
  18. ; if you have a legacy inventory store use the connection string below
  19. ConnectionString = "URI=file:inventory.db,version=3,UseUTF16Encoding=True"
  20. [AvatarService]
  21. ConnectionString = "URI=file:avatars.db,version=3"
  22. [AuthenticationService]
  23. ConnectionString = "URI=file:auth.db,version=3"
  24. [UserAccountService]
  25. ConnectionString = "URI=file:userprofiles.db,version=3"
  26. [GridUserService]
  27. ConnectionString = "URI=file:griduser.db,version=3"
  28. [FriendsService]
  29. ConnectionString = "URI=file:friends.db,version=3"