opensim – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 eva 1 ; The default connections to the test databases. Used by all data tests based on BasicDataServiceTest.cs.
2 ; This is read by code in DefaultTestConns.cs.
3  
4 ; NOTE that this INI file is currently loaded as a embedded RESOURCE, which is weird and has a
5 ; disadvantage of having to rebuild the Tests whenever the conn strings are changed.
6 ; The only reason is that I couldn't figure out a reliable way to put this INI into the correct
7 ; dir at runtime. If somebody can do it, that would be cool.
8  
9 ; I'm using a local MSDE server for testing. Obviously, you'll have to modify
10 ; the conn string to whatever MS SQL server is available to you.
11  
12 ; If any of the conn strings is commented out, emty or not valid on your system,
13 ; the relevant tests will be ignored, rather than fail.
14  
15 ; As to SQLite, if the conn string here is empty, it will work anyway using a temporary
16 ; file for the DB. If you want the resulting DB to persist (e.g. for performance testing,
17 ; when filling up the tables can take a long time), explicitly specify a conn string like this:
18  
19 ; SqliteConnection="URI=file:<path_to_your_file>,version=3"
20  
21 [TestConnections]
22 MySqlConnection="Server=localhost;Port=3306;Database=opensim-nunit;User ID=opensim-nunit;Password=opensim-nunit;"
23 SqlConnection="Server=.\SQL2008;Database=opensim-nunit;Trusted_Connection=True;"
24 SqliteConnection="URI=file:opensim-nunit.db,version=3"