aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLiteLegacy/SQLiteRegionData.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fixed the naming mess around data connectors for simulation dataJohn Hurliman2010-09-111-2261/+0
|
* Remove "Dwell" support from core and replace it with calls to methodsMelanie Thielker2010-09-051-3/+0
| | | | on IDwellModule
* Remove parts locking from data classes since these are using a copy of the ↵Justin Clark-Casey (justincc)2010-08-261-6/+3
| | | | scene object
* Improve consistency of locking for SOG.m_parts in order to avoid race ↵Justin Clark-Casey (justincc)2010-08-261-3/+6
| | | | conditions in linking and unlinking
* refactor: Use SOP.Flags rather than SOP.ObjectFlagsJustin Clark-Casey (justincc)2010-08-131-2/+2
|
* rename SQLiteNG to SQLite and SQLite to SQLiteLegacyJustin Clark-Casey (justincc)2010-04-301-0/+2264
this seems the least evil way forward since mono 2.6 and later will see increasing usage, and this only works with what was SQLiteNG MAC USERS WILL NEED TO CHANGE REFERENCES TO "OpenSim.Data.SQLite.dll" to "OpenSim.Data.SQLiteLegacy.dll" in OpenSim.ini and config-include/StandaloneCommon.ini (if using standalone) See the OpenSim.ini.example and StandaloneCommon.ini.example files for more details This commit also temporarily changes unsigned ParentEstateID values in the OpenSim.Data.Tests to signed temporarily, since the new plugin enforces creation of signed fields in the database (which is what the SQL actually specifies). And change data columns in sqlite is a pita.