aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MSSQL/MSSQLRegionData.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-031-347/+0
|
* Move OpenSim.Data.RegionFlags -> OpenSim.Framework.RegionFlags to make it ↵Justin Clark-Casey (justincc)2012-10-091-0/+1
| | | | easier for other code to use (e.g. LSL_Api) without having to reference OpenSim.Data just for this.
* Updates to MSSQL to most recent compatibility, also included Windlight ↵Chris Hart2011-06-011-0/+1
| | | | support. Needs plenty of testing but clean install and migration from 0.6.9 have been tested and work, a few indexes still need to be added for performance.
* Thank you, Marck00, for a patch that implemented region distance sortingMelanie Thielker2010-08-081-2/+5
| | | | for fallback regions. Applied with changes.
* White space from previous commit.Diva Canto2010-07-311-27/+27
|
* Implemented console command "show hyperlinks".Marck2010-07-311-28/+27
|
* MSSQL Additions for Presence Refactor branch. Most functionality tested and ↵StrawberryFride2010-02-241-6/+28
| | | | | | works, some outstanding issues around login location and border crossings on y axis. Signed-off-by: Melanie <melanie@t-data.com>
* Preliminary work on the new default region setting mechanismMelanie2010-01-091-0/+10
|
* Formatting cleanup.Jeff Ames2009-10-191-3/+3
|
* MSSQL changes for Grid server in ROBUST plus some code tweaks 'n tidy upunknown2009-10-051-1418/+198
|
* - cleaning up LandData/ILandObject capitalization issuesdr scofield (aka dirk husemann)2009-10-021-4/+4
| | | | - adding LandDataSerializer to OAR mechanics
* Formatting cleanup.Jeff Ames2009-10-011-1/+1
|
* MSSQL Minor tweak to recent patch for region loading (Thanks Grumly57 for ↵Chris Hart2009-09-031-0/+1
| | | | spotting it!)
* MSSQL patch to mirror mantis 4077 for MySQL to improve region load timesChris Hart2009-09-021-24/+38
|
* * Remove hard coded 256 limitations from various places. There's no more ↵Teravus Ovares (Dan Olivares)2009-08-071-6/+6
| | | | 256m limitation within the OpenSimulator framework, however, the LLClient ClientView does not support regions larger then 256 meters so, if you try and make your region larger by setting Constants.RegionSize = 512; in OpenSim.Framework.Constants.cs, the terrain will not display on clients using the LLUDP protocol
* * Updates libOMV to version 0.7.0Teravus Ovares2009-07-251-2/+2
| | | | | | | | * Uses mantis #3811 as a base (thanks jhuliman) with changes. * E-mail regarding interface changes sent to the opensim-dev list * Archive: https://lists.berlios.de/pipermail/opensim-dev/2009-July/007219.html
* Thank you, StrawberryFride, for a patch to fix MSSQL parameter naming.Melanie Thielker2009-07-091-2/+2
|
* From: Chris Yeoh <yeohc@au1.ibm.com>Sean Dague2009-06-291-14/+5
| | | | | | | | Attached is a patch that changes the oar file saving of creation date/time to an integer instead of a string. I did this after justincc emailed me saying there is a problem with internationalisation doing it the old way and I said I'd fix it. Its been tested with MySQL and I've made the changes for MSSQL but that hasn't been well tested.
* Formatting cleanup, ignore some generated files.Jeff Ames2009-06-221-1/+1
|
* Fixes Mantis #3793 . Committing thomax/Snoopy's patch to allow deeding of ↵Melanie Thielker2009-06-141-7/+31
| | | | | | | | | | objects, with changes: - Set OwnerID = GroupID for deeded objects. - Close a security loophole that would have allowed a user with deed rights in a group to deed ANY object to that group, even if it's not owned by them and/or not set to that group - Set LastOwnerID correctly. Handle objects vs. prims correctly.
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-011-1/+1
| | | | LICENSE.txt.
* * Refactored SOP.FolderID weirdness by removing calls to empty setter. YEs, ↵lbsa712009-02-251-4/+1
| | | | | | | I do realize the setter has to be there for legacy reasons, but since the calls will never acually DO anyhting, I'm removing them. * So, SOP.FolderID is actually a cruft field that should be removed.
* * Apply http://opensimulator.org/mantis/view.php?id=3142Justin Clarke Casey2009-02-191-51/+54
| | | | | | | | | * Changes varchar(36) columns to UUID type in MSSQL - this will be much more efficient * ===As always, please, please backup your database before applying this patch=== * Thanks Ruud Lathrop (for the patch) and StrawberryFride (for the review)
* * optimized usings.lbsa712009-02-121-1/+1
|
* This changeset is the step 1 of 2 in refactoringDr Scofield2009-02-061-2/+2
| | | | | | | | | | | | | | | | | | | | OpenSim.Region.Environment into a "framework" part and a modules only part. This first changeset refactors OpenSim.Region.Environment.Scenes, OpenSim.Region.Environment.Interfaces, and OpenSim.Region.Interfaces into OpenSim.Region.Framework.{Interfaces,Scenes} leaving only region modules in OpenSim.Region.Environment. The next step will be to move region modules up from OpenSim.Region.Environment.Modules to OpenSim.Region.CoreModules and then sort out which modules are really core modules and which should move out to forge. I've been very careful to NOT BREAK anything. i hope i've succeeded. as this is the work of a whole week i hope i managed to keep track with the applied patches of the last week --- could any of you that did check in stuff have a look at whether it survived? thx!
* * If an orphaned group is found in the mysql or mssql databases (i.e. there ↵Justin Clarke Casey2009-01-291-12/+21
| | | | | | | | | | | | is no prim where UUID = SceneGroupID), then force one prim to have UUID = SceneGroupID. * A warning is posted about this on startup giving the location of the object * This should allow one class of persistently undeletable prims to be removed * This change should not cause any issues, but I still suggest that you backup your database beforehand * If this doesn't work for previously linked objects, then you could also try the workaround in http://opensimulator.org/mantis/view.php?id=3059 * This change has been made to mysql and mssql, but sqlite appears to work in a different way
* * Remove unused prims.ParentID field from SQLite and MySQLJustin Clarke Casey2009-01-191-2/+0
| | | | | | | * Since this is a db change, as always I strongly recommend that you backup your database before updating to this revision * Haven't touched MSSQL in case I get it wrong - looking for some kind soul to take care of this.
* * Apply http://opensimulator.org/mantis/view.php?id=2965Justin Clarke Casey2009-01-121-0/+1
| | | | | | | * Adds first version of MsSql2005Dialect support for NHibernate * Thanks mpallari
* Thank you kindly, StrawberryFride for a patch that:Charles Krinke2009-01-071-628/+573
| | | | | | | Solves the problem of unable to load prim items on region start in MSSQL. The error was in the MSSQLRegionData code that loads objects from the database, due to reliance on the ParentID field that is not used.
* * Stop bothering to populate and retrieve the parent local ids for MSSQL, as ↵Justin Clarke Casey2009-01-051-2/+0
| | | | | | | | was done for SQLite and MySQL in r7586 * This may resolve http://opensimulator.org/mantis/view.php?id=2939
* Mantis#2881. Thank you kindly, SirKimba for a patch that:Charles Krinke2008-12-201-5/+5
| | | | | | | | Solves inserting Wolrdparameters in SQL Database with OpenSim.Data.MSSQL.dll always crash cause there were missing some fields in the Insert-String
* Mantis#2730. Thank you kindly, StrawberryFride for a patch that:Charles Krinke2008-12-011-2/+2
| | | | | | | | MSSQL Fix to accommodate random ParentIDs. uint values now cleanly converted to ints and vice versa to hopefully prevent outofrange exceptions on prim storage.
* * refactor: Rip out SOP inventory from the partial into a separate classJustin Clarke Casey2008-11-211-1/+1
| | | | | | | | * SceneObjectPartInventory.cs isn't a particularly good name but it's probably not got a long life * A proper inventory interface to follow * Parallel changes for other inventory partial classes to follow at a later date
* Mantis#2658. Thank you kindly, StrawberryFride for a patch that:Charles Krinke2008-11-191-0/+6
| | | | | | Keeping up with MySQL and SQLite. Small code changes and another resource file to add.
* Mantis#2657. Thank you kindly, StrawberryFride for a patch that:Charles Krinke2008-11-191-52/+30
| | | | | | Added access_time and create_time, plus the new sun position data to MSSQL code.
* Mantis#2626: Thank you Ruud Lathrop, for a patch that cleans up MSSQL code.Homer Horwitz2008-11-151-1/+1
|
* Mantis#2552: Thanks idb, for a patch that fixes persistence of physical prims.Homer Horwitz2008-11-151-2/+1
| | | | | | (added a fix for the broken build from last commit, too)
* * refactor: Expose SOG.SetRootPart for outsiders to use rather than setting ↵Justin Clarke Casey2008-11-101-2/+2
| | | | | | | | RootPart and adding the part separately * Make RootPart read only
* Thank you kindly, Ruud Lathrop for a patch that solves:Charles Krinke2008-10-271-156/+181
| | | | | Primary Key violation when just linked a lot of prims using MSSQL.
* Thank you, Strawberry Fride, for a patch that brings MSSQL even with MySQLMelanie Thielker2008-10-181-31/+35
|
* * minor: comment out persisting prim inventory log messagesJustin Clarke Casey2008-10-151-1/+1
|
* * Apply http://opensimulator.org/mantis/view.php?id=2295Justin Clarke Casey2008-09-291-46/+51
| | | | | | | | | | * Updated MSSQL to reflect resend changes * Added the new columns in prims table. * Created a implementation for getting gestures. * Remove configurable table names for user. * Thanks Ruud Lathorp
* * Patch from JHurlimanTeravus Ovares2008-09-261-2/+2
| | | | | | | | | * Updates to libomv r2243, * Remove lots of unnecessary typecasts * Improves SendWindData() Thanks jhurliman. * Will update OpenSim-libs in 10 minutes..
* - Add Dispose method to IRegionDataStoreHomer Horwitz2008-09-181-0/+5
| | | | | | | | - Add necessary dummy Dispose-methods where they are missing - Implement the SQLite Dispose-methods (currently only used for unit tests, in the next commit)
* Mantis #2124Melanie Thielker2008-09-141-102/+104
| | | | | | | Thank you, RuudL, for a patch that brings MSSQL up to the same implementation level as MySQL.
* * Make fix to MSSQLRegionData.cs in LoadLandObjects as recommended by ↵Justin Clarke Casey2008-09-121-1/+1
| | | | | | | | Garrett Hussey in Re: [Opensim-dev] MSSQL runtime error in latest build.. * Thanks!
* Update svn properties, formatting cleanup.Jeff Ames2008-09-091-2/+2
|
* * This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2008-09-061-72/+72
| | | | | | | * 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.
* * Blind fix what looks like a bug in the new land MSSQL codeJustin Clarke Casey2008-09-061-1/+1
| | | | | | | * The data returned from the db was never inserted in the list to be processed and return * This is an example where a warning has revealed a bug
* * Remove lots of warnings from the CMS moduleJustin Clarke Casey2008-09-061-1/+0
| | | | | | * Remove a few other miscellaneous warnings