aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/MySQLDataStore.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Patch #9155 (Mantis #1793)Melanie Thielker2008-07-251-0/+1
| | | | | | | Fix a regression that caused the region settings not to save. Still no SQLite support for region settings. MySQL now functional.
* 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-70/+70
| | | | | | | 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-22/+1
| | | | | | ven for the region datastore. Removes the flag to store prim inventories, which are now always stored.
* masks MySQL password from console startup messagesDahlia Trimble2008-07-181-1/+22
|
* Patch #9151Melanie Thielker2008-07-181-140/+3
| | | | | | 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
|
* Copyright notices and formatting cleanup.Jeff Ames2008-07-061-2/+2
|
* Mantis#1639. Thank you, Melanie for a patch that:Charles Krinke2008-07-011-1/+8
| | | | | | Reads estate_settings.xml and populates the database from it. If there is no record, just passes the defaults to the application.
* Mantis#1637. Thank you kindly, Melanie for a patch that:Charles Krinke2008-06-301-0/+6
| | | | | | Make each region load it's settings from the database on startup. No user functionality yet.
* * Fix for http://opensimulator.org/mantis/view.php?id=1512Justin Clarke Casey2008-06-291-18/+94
| | | | | | | * Introduce experimental wait timeout checking to mysql region datastore code * This should mean that if the mysql connection has timed out, we should automatically reconnect and not fail or drop queries on region database manipulations
* patch and files from mantis #1630, Thanks MelanieMW2008-06-291-0/+183
|
* last round of warning squashing. calling it a day now.Dr Scofield2008-06-271-152/+152
|
* Apply patch from bug #1601 -- more documentation for Data/MySQL. Thanks ↵Jeff Ames2008-06-261-36/+223
| | | | 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
* Add patch from bug #1596 - adds Doxygen documentation in OpenSim.Data.MySQL ↵Jeff Ames2008-06-261-3/+65
| | | | files. Thanks kerunix_Flan!
* * Adds Region ban capability to Regions. You access this by going to ↵Teravus Ovares2008-06-211-0/+117
| | | | | | | | 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-7/+16
| | | | | * mySQL this time.
* fix an edge case with migrations in the region store.Sean Dague2008-06-191-0/+4
| | | | | | Add migration support to gridstore.
* Fix mysql migrations. This is tested with an existing up to date schema,Sean Dague2008-06-121-0/+1
| | | | | | | | | and no schema. It should also work with a non up to date schema as well. Btw, meetings in which I can get code done are the right kind of meetings.
* * minor: Remove and tidy duplicate 'storing object to scene' messages in logJustin Clarke Casey2008-06-121-1/+1
|
* this, in theory, adds migration support to mysql for all Sean Dague2008-06-121-72/+84
| | | | | | | | data sources besides the grid store. It is only lightly tested so the less adventurous should wait a couple of checkins before upgrading.
* Mantis#1501. Thank you kindly, Nebadon, for a patch thatCharles Krinke2008-06-101-1/+7
| | | | | addresses the 'terrain fill 0' error.
* * experimental: Make OpenSim archiver save and reload all prim textures when ↵Justin Clarke Casey2008-06-021-0/+1
| | | | not all faces have the same texture
* remove terrain bloat, only keep last terrain revisionSean Dague2008-05-281-1/+5
| | | | | | | for mysql. For active terraformers this should return a lot of database space.
* remove an erroneous line to fetch the terrain table in a way that Sean Dague2008-05-281-2/+0
| | | | | | isn't actually used.
* * Potential fix for Mantis#167, 332 - MySQL Thread collision.Adam Frisby2008-05-261-61/+76
|
* Formatting cleanup.Jeff Ames2008-05-161-92/+92
|
* * Implemented DIE_AT_EDGE and Temporary objects don't save to the database.Teravus Ovares2008-05-041-1/+3
|
* * In ur code. Making it static.Adam Frisby2008-05-011-22/+22
| | | | | * Converted a bunch of functions to static functions.
* * Align new fields upgrade sql to have the same 'not null' and default ↵Justin Clarke Casey2008-05-011-23/+23
| | | | | | | | settings as when an inventoryitems table is newly created * Normalize logging titles in database code, though this doesn't yet cover invoking code
* * Spring cleaned a bunch of '//TODO: unused' marked functions.Adam Frisby2008-04-301-42/+0
|
* * Refactored the land table to be versionable in mySQL.Teravus Ovares2008-04-301-11/+128
| | | | | * Added AuthbuyerID so that if someone sets a land for sale to someone and then restarts the simulator, when the simulator comes back up, the setting persists.
* * Patch by Melanie. Implements proper objectflags on child objects. Thanks ↵Teravus Ovares2008-04-301-1/+1
| | | | | | | Melanie! RE: 0001079: r4387. touch() event does not fire when touch script is in root prim and child prims are touched
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-211-4/+5
| | | | (this took a while to run).
* fix ups to include OpenSim.Framework explicit includes (theySean Dague2008-04-021-0/+1
| | | | | | | were implicitly included before). Everything builds again. Now off to testing.
* attempt to fix up all refernces to new directory structureSean Dague2008-04-021-1/+1
|
* whole lot more movingSean Dague2008-04-021-0/+1722