diff options
author | lbsa71 | 2008-02-13 12:06:09 +0000 |
---|---|---|
committer | lbsa71 | 2008-02-13 12:06:09 +0000 |
commit | bcd3a5b28bc63426e5ac1f4642afca4a391ece28 (patch) | |
tree | d38441c04425259fe450d062e7be25c90ae7cb09 /bin | |
parent | * Removed a debug line that got called every frame. (diff) | |
download | opensim-SC_OLD-bcd3a5b28bc63426e5ac1f4642afca4a391ece28.zip opensim-SC_OLD-bcd3a5b28bc63426e5ac1f4642afca4a391ece28.tar.gz opensim-SC_OLD-bcd3a5b28bc63426e5ac1f4642afca4a391ece28.tar.bz2 opensim-SC_OLD-bcd3a5b28bc63426e5ac1f4642afca4a391ece28.tar.xz |
* Introduced customizable table names on MySQL and MSSQL UserData plug-ins.
[Provided by openlifegrid.com]
Diffstat (limited to '')
-rw-r--r-- | bin/OpenSim.ini.example | 4 | ||||
-rw-r--r-- | bin/mssql_connection.ini.example | 10 | ||||
-rw-r--r-- | bin/mysql_connection.ini.example | 10 |
3 files changed, 24 insertions, 0 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index ce2f02e..2297fc4 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example | |||
@@ -76,8 +76,12 @@ physical_prim = true | |||
76 | accounts_authenticate = true | 76 | accounts_authenticate = true |
77 | welcome_message = "Welcome to OpenSim" | 77 | welcome_message = "Welcome to OpenSim" |
78 | inventory_plugin = "OpenSim.Framework.Data.SQLite.dll" | 78 | inventory_plugin = "OpenSim.Framework.Data.SQLite.dll" |
79 | |||
80 | ; User Data Database provider | ||
79 | ; userDatabase_plugin = "OpenSim.Framework.Data.DB4o.dll" | 81 | ; userDatabase_plugin = "OpenSim.Framework.Data.DB4o.dll" |
82 | ; userDatabase_plugin = "OpenSim.Framework.Data.MySQL.dll" | ||
80 | userDatabase_plugin = "OpenSim.Framework.Data.SQLite.dll" | 83 | userDatabase_plugin = "OpenSim.Framework.Data.SQLite.dll" |
84 | |||
81 | default_location_x = 1000 | 85 | default_location_x = 1000 |
82 | default_location_y = 1000 | 86 | default_location_y = 1000 |
83 | dump_assets_to_file = false | 87 | dump_assets_to_file = false |
diff --git a/bin/mssql_connection.ini.example b/bin/mssql_connection.ini.example index c63d008..ceb277f 100644 --- a/bin/mssql_connection.ini.example +++ b/bin/mssql_connection.ini.example | |||
@@ -1,6 +1,16 @@ | |||
1 | ; The IniConfig.cs that parses this file by just finding the first key={value} in the whole text so comments aren't really honoured. | ||
2 | ; Also, this algorithm can probably lead to 'amusing' results in unfortunate cases. | ||
3 | |||
1 | [mssqlconnection] | 4 | [mssqlconnection] |
2 | data_source=\SQLEXPRESS | 5 | data_source=\SQLEXPRESS |
3 | initial_catalog=database | 6 | initial_catalog=database |
4 | persist_security_info=True | 7 | persist_security_info=True |
5 | user_id=username | 8 | user_id=username |
6 | password=password | 9 | password=password |
10 | |||
11 | ; These entries are only for if you, for some reason, wish to customize your user server table names. | ||
12 | ; If ommitted, default values will be used. | ||
13 | |||
14 | userstablename=users | ||
15 | userfriendstablename=userfriends | ||
16 | agentstablename=agents \ No newline at end of file | ||
diff --git a/bin/mysql_connection.ini.example b/bin/mysql_connection.ini.example index 7933bed..2fe469c 100644 --- a/bin/mysql_connection.ini.example +++ b/bin/mysql_connection.ini.example | |||
@@ -1,3 +1,6 @@ | |||
1 | ; The IniConfig.cs that parses this file by just finding the first key={value} in the whole text so comments aren't really honoured. | ||
2 | ; Also, this algorithm can probably lead to 'amusing' results in unfortunate cases. | ||
3 | |||
1 | [mysqlconnection] | 4 | [mysqlconnection] |
2 | hostname=localhost | 5 | hostname=localhost |
3 | database=database | 6 | database=database |
@@ -5,3 +8,10 @@ username=username | |||
5 | password=password | 8 | password=password |
6 | pooling=false | 9 | pooling=false |
7 | port=3306 | 10 | port=3306 |
11 | |||
12 | ; These entries are only for if you, for some reason, wish to customize your user server table names. | ||
13 | ; If ommitted, default values will be used. | ||
14 | |||
15 | userstablename=users | ||
16 | userfriendstablename=userfriends | ||
17 | agentstablename=agents | ||