aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/MySQLGenericTableHandler.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-191-64/+120
|
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-031-0/+60
|
* Update folder version numbers when moving items and making the ↵Justin Clark-Casey (justincc)2012-11-061-0/+6
| | | | | | | | Delete(string[], string[]) call (not just string, string). This is to stop viewer inventory cache version numbers becoming out of sync with grid stored numbers when viewer performs these actions. If there are no problems with these changes, they will be propogated to SQLite (and MSSQL if that's simple enough). May also need to do the same on folder store/create/delete and maybe propogate version increments up the folder hierarchy, but that requires investigation.
* Fixed problem with MySQL: it was possible for one thread to use an ↵Oren Hurvitz2012-04-241-2/+4
| | | | incomplete list of column names if another thread was creating the list at the same time. Now this is thread-safe.
* Allow item links to be deleted even when other deletes and purges are disabled.Justin Clark-Casey (justincc)2011-05-191-6/+21
| | | | | | | If these links are not deleted, then they will build up in the player's inventory until they can no longer log in. Accidental deletion of links due to bugs or other causes is potentially inconvenient but on a par with items being accidentally moved. When a link is deleted, the target of the link is never touched. This is a general solution that accounts for the use of links anywhere in the user's inventory.
* Accidentally committed too earlyJustin Clark-Casey (justincc)2011-05-181-21/+6
| | | | | | Revert "Allow item links to be deleted even when other deletes and purges are disabled." This reverts commit 491279f99afc65860d44765ee7829c7dd5e4e38e.
* Allow item links to be deleted even when other deletes and purges are disabled.Justin Clark-Casey (justincc)2011-05-171-6/+21
| | | | | | | If these links are not deleted, then they will build up in the player's inventory until they can no longer log in. Accidental deletion of links due to bugs or other causes is potentially inconvenient but on a par with items being accidentally moved. When a link is deleted, the target of the link is never touched. This is a general solution that accounts for the use of links anywhere in the user's inventory.
* remove further mono compiler warningsJustin Clark-Casey (justincc)2011-05-061-1/+1
|
* Include code to return more information about the NullReferenceException seen inJustin Clark-Casey (justincc)2011-04-111-2/+13
| | | | http://opensimulator.org/mantis/view.php?id=5403 prior to doing something about it.
* Pull up Assembly of the MySQL classes as a protected property, so that it ↵Diva Canto2011-03-081-1/+6
| | | | can be overwritten in subclasses. That way extensions can decide in which assembly migration resources should be looked up. This is just a refactor -- no functional changes whatsoever.
* Skip conversion if fields that are null in the database. This mayMelanie Thielker2010-08-191-0/+4
| | | | uncover errors elsewhere.
* All (?) MySQL stores fixed to use DBGuid.FromDB()AlexRa2010-05-191-7/+4
| | | | | | | | | | | | | This was needed if we want to update to the latest MySQL connector dll. It automatically converts CHAR(36) to Guids, so getting them as strings no longer works. By using DBGuid.FromDB(), we unlink from any particular storage format of GUIDs, could even make them BINARY(16) if we like. Actually not all MySql units are touched, but the remaining ones don't seem to be affected (they don't read GUIDs from DB)
* Formatting cleanup. Add copyright notices.Jeff Ames2010-03-101-1/+1
|
* add initial UserGrid service classes as per diva's directionJustin Clark-Casey (justincc)2010-03-051-2/+1
| | | | | this will initially store home location data instead of the presence service compiles but not enough to actually test yet
* Merge branch 'master' into presence-refactorMelanie2010-03-021-4/+0
|\ | | | | | | | | This is the big one. master is now presence-refactor (pre 0.7). A new branch 0.6.9-post-fixes and leading tag 0.6.9 has been created. The Presence-refactor branch remains for experimental work.
| * Fix a few compiler warnings.Jeff Ames2010-03-011-4/+0
| |
* | Merge branch 'master' into presence-refactorMelanie2010-02-081-101/+116
|\ \ | |/ | | | | | | This was a large, heavily conflicted merge and things MAY have got broken. Please check!
| * Updated MySQL connection management to use the MySQL connection pooling. ↵Master ScienceSim2010-02-051-99/+116
| | | | | | | | This should accommodate various timeout problems that exist with the current connection pool code in a more general and standard way.
* | Merge branch 'master' into presence-refactorMelanie2010-01-041-0/+5
|\ \ | |/
| * First stage port of the XInventoryServiceMelanie2010-01-041-0/+5
| |
* | AvatarStore. Untested, but completeMelanie2010-01-041-5/+5
| |
* | Adding new fields and home location methid to presence. Adding cleanupMelanie2009-12-281-0/+2
|/ | | | (deleting all but one presence record) on logout so that they don't pile up.
* Correct some issues with the last commitroot2009-12-261-1/+2
|
* Close a SQL injection loophole in the new database driverMelanie2009-12-261-2/+3
|
* Make the GenericTableHandler work as intendedroot2009-12-261-2/+8
|
* Add a generic REPLACE INTO handler for put into the generic table handlerMelanie2009-12-261-0/+25
|
* Formatting cleanup.Jeff Ames2009-11-231-2/+2
|
* Implement generic delete methodMelanie2009-11-181-1/+14
|
* Tweak presence handling and whip up a database connector and handlerMelanie2009-11-181-1/+3
| | | | for testign the new generic table handling
* Committing the incomplete table handler to get it into the tree. No userMelanie2009-11-151-0/+200
functionality yet