aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite/SQLiteRegionData.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Megapatch. :) Fix skull attachment editing. Streamline Object terse updates.Melanie Thielker2008-10-181-0/+7
| | | | | | | | Add rezzing time to objects. Add Object return and traffic fields to land database. Add plumbing for auto return. Implement auto return. Contains a migration. May contain nuts.
* fix the sqlite break. There were two issue here:Sean Dague2008-10-031-1/+2
| | | | | | | | | | | 1. type issues on column create in ado.net 2. not setting a field in the ado.net row translates into explicitely setting it to null in sqlite land (because it can't read the defaults stanzas out of the database) Things should work again after this.
* Add database persistence for material settingMelanie Thielker2008-10-031-0/+6
|
* add delete prim tests. Found and fixed bugs where regionSean Dague2008-10-011-1/+1
| | | | | | | | is not respected by sqlite or mysql drivers so that deleting and object in a region actually deletes that object from any region.
* add a test for updating region settings and fix a bug in uuidSean Dague2008-09-291-1/+1
| | | | | | translation in sqlite uncovered by this test.
* * Patch from JHurlimanTeravus Ovares2008-09-261-5/+5
| | | | | | | | | * Updates to libomv r2243, * Remove lots of unnecessary typecasts * Improves SendWindData() Thanks jhurliman. * Will update OpenSim-libs in 10 minutes..
* remove a bunch of out of date inline ALTER table commands that would onlySean Dague2008-09-241-84/+17
| | | | | | confuse people.
* Small formatting cleanup, before chi11ken notices. Me bad.Homer Horwitz2008-09-191-10/+19
|
* - Add Dispose method to IRegionDataStoreHomer Horwitz2008-09-181-0/+40
| | | | | | | | - Add necessary dummy Dispose-methods where they are missing - Implement the SQLite Dispose-methods (currently only used for unit tests, in the next commit)
* * Updates the SQLite region database to support the same properties that the ↵Teravus Ovares2008-09-181-0/+152
| | | | | | | MySQL version does for the table, prims. * If this causes any unit tests to fail, the tests need to be updated.
* Added some terrain tests, and found a fun race condition in the sqliteSean Dague2008-09-161-15/+15
| | | | | | terrain driver in the process, which is now fixed. yay for unit tests!
* * Adds regiondata and estatedata persistence in Sqlite. This commit is ↵Teravus Ovares2008-09-131-0/+3
| | | | actually an assist. 99% of the work was already done by Melanie.
* Formatting cleanup.Jeff Ames2008-09-131-1/+1
|
* * Fixes SQLite load crash. Teravus Ovares2008-09-131-2/+3
| | | | | | | * added primary key to regionsettings table in the cached table * initialized the data adapter. * Still untested fully, so watch out!
* Add region settings support to SQLite (untested!)Melanie Thielker2008-09-131-1/+183
|
* * Patch http://opensimulator.org/mantis/view.php?id=2163Justin Clarke Casey2008-09-121-0/+7
| | | | | | | | * Add prim ClickAction persistence to SQLite * This will require a prebuild * Thanks nlin!
* added the first couple of sqlite tests. we'll see how bambooSean Dague2008-09-101-1/+1
| | | | | | handles them.
* Update svn properties, minor formatting cleanup.Jeff Ames2008-09-101-2/+2
| | | | | Fix unreachable code due to typo in llDetectedGroup.
* * Fixes Sqlite crash bug when saving a prim.Teravus Ovares2008-09-091-1/+6
|
* possible fix for EARTH SHATTERING KABOOM! when trying to save a primSean Dague2008-09-091-1/+1
|
* fix an automatically stripped out UUID from SQLiteManagerSean Dague2008-09-091-6/+6
| | | | | | fix some spacing in SQLiteRegionData
* hopefully fix embedded inventory for sqliteSean Dague2008-09-091-3/+3
|
* Implement proper persistence of the following prim properties:Melanie Thielker2008-09-081-0/+9
| | | | | | | | | Floating text, Rotation, Texture animation, Particle System This will make "Eye Candy" scripts work without modification in XEngine. The use of the CHANGED_REGION_RESTART hack is no longer needed. Implemented in MySQL only, hovertext also in SQLite.
* * This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2008-09-061-64/+64
| | | | | | | * This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
* we are now past change 6000, so getting rid of pre-Migration cruftSean Dague2008-08-271-222/+0
|
* Formatting cleanup.Jeff Ames2008-08-181-25/+25
|
* * Remove dumb bug I put in which meant that an archive save would never ↵Justin Clarke Casey2008-07-251-1/+1
| | | | complete if there were any missing assets
* refactor TaskInventoryItem Mask -> Permissions to be consistant with how thingsSean Dague2008-07-231-10/+10
| | | | | | are stored in the db.
* refactored LandData to use properties, and cleaned up the naming onSean Dague2008-07-231-69/+69
| | | | | | | the properties a bit to be more consistant with other objects (having things like .Name .Description, etc).
* Introduce a separate connection string for estates, which defaults to the one giMelanie Thielker2008-07-181-24/+1
| | | | | | ven for the region datastore. Removes the flag to store prim inventories, which are now always stored.
* Patch #9151Melanie Thielker2008-07-181-114/+0
| | | | | | Makes the estate dialog fully functional. Implements all client facing functionality. Moves estate data from estate_settings.xml, which is used to provide defaults, to the region data store. Creates one estate for each region, and places the region in it. Converts all region bans to estate bans.
* change SitTarget calls from functions to propertiesSean Dague2008-07-071-14/+15
|
* patch and files from mantis #1630, Thanks MelanieMW2008-06-291-0/+9
|
* last round of warning squashing. calling it a day now.Dr Scofield2008-06-271-48/+48
|
* Apply patch from bug #1605 -- Documentation for Data/SQLite. Thanks ↵Jeff Ames2008-06-261-18/+245
| | | | kerunix_Flan!
* Mantis#1595. Thank you, Melanie for a patch that:Charles Krinke2008-06-261-0/+3
| | | | | Adds pipes for the prim item flags field
* * Persists region banlists across reboots for the sqlite datastore also now.Teravus Ovares2008-06-211-3/+82
|
* * Adds Region ban capability to Regions. You access this by going to ↵Teravus Ovares2008-06-211-0/+17
| | | | | | | | World->Region/Estate. Then on the Estate tab, at the lower right hand corner, clicking the 'Add' button and picking an avatar. * It only persists across reboots for the mySQL datastore currently. * Currently have stubs in the other datastores.
* * Handle parcel telehub location corruption gracefully. DBNullTeravus Ovares2008-06-201-1/+2
| | | | | * mySQL this time.
* * Handle parcel telehub location corruption gracefully. DBNullTeravus Ovares2008-06-201-6/+15
|
* * minor: Remove and tidy duplicate 'storing object to scene' messages in logJustin Clarke Casey2008-06-121-1/+1
|
* check in working migration code fore SQLite. This Sean Dague2008-06-111-136/+150
| | | | | | | | is now using migrations instead of the old model to create tables. Tested for existing old tables, and for creating new ones.
* Formatting cleanup.Jeff Ames2008-05-161-58/+58
|
* * Fixed some compiler warningsAdam Frisby2008-05-071-1/+1
| | | | | * Fixed prebuild.xml to remove DB4o references (more compiler warnings)
* * Implemented DIE_AT_EDGE and Temporary objects don't save to the database.Teravus Ovares2008-05-041-1/+3
|
* * Thanks to Mic Bowman for inspiring me to look at that we are still using ↵Adam Frisby2008-05-011-16/+0
| | | | ASCIIEncoder in places we shouldn't.
* * Breaking all the code, breaking all the code..!Adam Frisby2008-05-011-4/+4
| | | | | * Made a bunch more members static, removed some dead code, general cleaning.
* * In ur code. Making it static.Adam Frisby2008-05-011-17/+17
| | | | | * Converted a bunch of functions to static functions.
* * Assorted spring cleanings.Adam Frisby2008-05-011-2/+3
|
* * Align new fields upgrade sql to have the same 'not null' and default ↵Justin Clarke Casey2008-05-011-28/+28
| | | | | | | | settings as when an inventoryitems table is newly created * Normalize logging titles in database code, though this doesn't yet cover invoking code