aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLiteLegacy (follow)
Commit message (Collapse)AuthorAgeFilesLines
* On initial region registration, if the user chooses the option to make the ↵Justin Clark-Casey (justincc)2011-03-211-0/+33
| | | | region part of an existing estate, then list the existing region names.
* Fix joining land parcels not being stored correctly in SQLite. Thank you to ↵Marck2010-11-231-0/+3
| | | | goetz for the initial patch in Mantis #5230.
* Added creator info across the board -- TaskInventoryItems and InventoryItems ↵Diva Canto2010-11-212-4/+4
| | | | | | themselves. Tested. Seems to be working, main tests pass. Nothing done for IARs or HG transfers yet -- this only works for OARs for the time being. New migration in inventory table in order to make CreatorID varchar(255).
* Updated SQLiteLegacy/SQLiteSimulationData with the same. Is this crap still ↵Diva Canto2010-11-211-2/+2
| | | | used?!?
* Add lsClearWindlightScene() to the lightshare module to remove WL settingsMelanie2010-11-031-0/+3
| | | | from a region and allow normal day cycles to be reestablished
* Changed SceneObjectGroup to store parts with the fast and thread-safe ↵John Hurliman2010-09-161-1/+1
| | | | MapAndArray collection
* * Added ISimulationDataService and IEstateDataServiceJohn Hurliman2010-09-122-0/+18
| | | | | * Removed StorageManager * CONFIG CHANGE: There are no more database settings in OpenSim.ini. Check the config-include configuration files for region store and estate store database settings
* Changed all string references of "IRegionDataStore" to "ISimulationDataStore"John Hurliman2010-09-111-2/+0
|
* Fixed the naming mess around data connectors for simulation dataJohn Hurliman2010-09-111-1/+1
|
* 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
|
* Hopefully fixes mantis #4852Diva Canto2010-07-081-2/+2
|
* Implement the "delete" path for assets. Adds a new option to allow remote ↵Melanie2010-05-091-1/+5
| | | | asset deletion in robust handler.
* minor: eliminate more debug Console.WriteLines, convert one to logging insteadJustin Clark-Casey (justincc)2010-04-301-1/+5
|
* rename SQLiteNG to SQLite and SQLite to SQLiteLegacyJustin Clark-Casey (justincc)2010-04-3057-0/+6082
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.