aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/MySQLUserData.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2010-02-21Deleted obsolete files in the Data layer. Compiles.Diva Canto1-766/+0
2010-02-12Fix http://opensimulator.org/mantis/view.php?id=4224Justin Clark-Casey (justincc)1-5/+0
This resolves the problem where eyes and hair would turn white on standalone configurations When a client receives body part information, for some insane reason or other it always ends up uploading this back to the server and then immediately re-requesting it. This should have been okay since we stored that asset in cache. However, the standalone asset service connector was not checking this cache properly, so every time the client made the request for the asset it has just loaded it would get a big fat null back in the face, causing it to make clothes and hair white. This bug did not affect grids since they use a different service connector.
2010-02-05Updated MySQL connection management to use the MySQL connection pooling. ↵Master ScienceSim1-411/+265
This should accommodate various timeout problems that exist with the current connection pool code in a more general and standard way.
2009-11-02Reverting the memory leak patch for MySQL. Problems have been reported with ↵John Hurliman1-186/+184
the grid server after running for several hours
2009-10-04* MySQL data tests now pass by fixing a bad fix for a bad cast on the asset ↵John Hurliman1-184/+186
Local member in MySQLAssetData * First pass at applying the using(){} pattern to IDisposable objects. Always use the using pattern on IDisposable objects whenever possible, do not manually call .Close() or .Dispose() unless there is no other way to write the code. This pass mostly covers OpenSim.Data.MySQL, and should have no functional change (tests still pass)
2009-10-01Formatting cleanup.Jeff Ames1-2/+2
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-02-12* optimized usings.lbsa711-2/+3
2009-01-07* Apply http://opensimulator.org/mantis/view.php?id=2948Justin Clarke Casey1-12/+12
* This fixes adding and updating user profiles in MySQL on platforms that have a commas as a decimal separator * Thanks Tommil!
2008-11-27* Remove unused and largely unimplemented UpdateUserCurrentRegion()Justin Clarke Casey1-5/+0
* please say if this causes you a problem
2008-11-23Plumb in the presence notifications and region shutdown/restart messagesMelanie Thielker1-0/+26
from the presence module to the message server, through the user server and on into the database. This should fix the "Already logged in" issue that grids see after a sim crashes, or a user crashes out of a sim. Not yet a 100% solution for friends, but getting there.
2008-11-13Update avatar picker search to work with OpenSearch people searchMelanie Thielker1-2/+2
2008-11-06From: arthursv@linux.vnet.ibm.comSean Dague1-2/+2
Add more unit tests for user cases Persist more user fields into mysql that already had columns defined but weren't getting passed to the mysql manager.
2008-11-04implement email field for MySQL and SQLiteSean Dague1-2/+2
From: Sean Dague <sdague@gmail.com>
2008-11-01* Minor cleanupAdam Frisby1-1/+0
* Added additional error message when a Object/SOG DB save fails so we can trace why.
2008-11-01Megapatch that fixes/adds: friend offer/deny/accept, friendship termination,Homer Horwitz1-0/+43
on-/offline updates, calling cards for friends. This adds methods in the DB layer and changes the MessagingServer, so a full update (incl. UGAIM) is necessary to get it working. Older regions shouldn't break, nor should older UGAIM break newer regions, but friends/presence will only work with all concerned parts (UGAIM, source region and destination region) at this revision (or later). I added the DB code for MSSQL, too, but couldn't test that. BEWARE: May contain bugs.
2008-11-01A stab a getting the user server to act right. Move acquisition of theMelanie Thielker1-15/+18
locks to just before the try/catch/finally block, so that an exception thrown between taking the lock and entering the try doesn't leave a mutex locked
2008-10-31* Added some debug information to MySQL UserDataManager to help diagnose a ↵Adam Frisby1-18/+24
potential issue when in high load. Related to mantis #2508.
2008-10-16- Enforced no user or agent with UUID 0 on agent DB insertionSean Dague1-0/+4
2008-10-15- Makes MySQL reject inserting UUID 0Sean Dague1-0/+5
- Makes SQLite mimick MySQL default behavior on first and last name already on db: it does not insert the new record. - Added tests for UUID 0 and for new UUID with existing first and last name.
2008-09-24expose it for real, missed the public keywordSean Dague1-1/+1
2008-09-24expose MySQLUserData class so that it can be testedSean Dague1-1/+1
2008-09-24remove configurable table names from the mysql user driver. ThatSean Dague1-24/+3
doesn't work in a world of migrations anyway, and is only cruft that will confuse people.
2008-09-14Thank you kindly, CMickeyb for a patch that:Charles Krinke1-0/+6
Moved intialization of appearance from the SendInitialData event handler into CompleteMovement handler. That ensures that m_appearance is initialized before the inventory is retrieved (so there is a place to check on attachments).
2008-09-09Update svn properties, formatting cleanup.Jeff Ames1-1/+1
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares1-31/+31
* 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.
2008-09-03Mantis #2099Melanie Thielker1-16/+25
Thank you, cmickeyb, for a patch that corrects the database connection handling in the multithreaded user server.
2008-08-30* Fix for Mantis #2087, Standalone MySQL broken with threading improvements. ↵Adam Frisby1-0/+9
(Didnt realise this code was being shared with the gridservers)
2008-08-30* Minor fix to previous threading patch, every nTH request would previously ↵Adam Frisby1-2/+10
have been delayed for 1000ms. This has been fixed.
2008-08-30* Added new "SuperManager" class for MySQL connections, for allowing ↵Adam Frisby1-236/+352
multiple concurrent MySQL threads. * Implemented SuperManager inside of UserData. This means the userserver when running on MySQL will use 10 connections (+1 system connection) to handle requests, preventing the previous mire of locking resulting in singlethreadedness. * This requires testing and grids relying on stability should not upgrade to this revision until it's been properly tested.
2008-08-27remove legacy pre-Migration database upgrade routinesSean Dague1-120/+0
2008-08-19Attachment persistence (Mantis #1711)Melanie Thielker1-30/+9
Change user server to handle attachment assets record properly. Ensure that attachments are not re-rezzed on region crossing. Persistence will NOT WORK with earliser UGAI!! Change region server to match.
2008-08-19Update svn properties, formatting cleanup.Jeff Ames1-3/+3
2008-08-19Attachment persistence!!! Patch #9169 (Mantis #1171)Melanie Thielker1-4/+5
Attachments now save to MySQL. No reattach on login yet.
2008-08-18* If two regions have configuration information that conflicts (save xy ↵Justin Clarke Casey1-0/+1
location, same uuid or same internal ip port) then complain loudly and don't start up
2008-08-18Avatar Attachment persistence!! Patch #9168 (Mantis #1171)Melanie Thielker1-0/+25
Plumbs in attachment persistence and adds the tables. Currently MySQL only, no user functionality yet.
2008-08-15Plumb in the partner and the account title fields for profile info.Melanie Thielker1-1/+1
2008-08-14Adds UserFlags and GodLevel to the user data store and plumbs then in.Melanie Thielker1-1/+1
This will have no effect unless both the UGAI and the region are this revision or later
2008-08-14Mantis #1946Melanie Thielker1-1/+1
Thank you, HomerHorwitz, for a patch that corrects and improves TP to landmark and home position handling.
2008-07-31Apply updated patch from issue 1871. Thanks sempuki.Mike Mazur1-2/+2
2008-07-31Thanks, sempuki, for a patch that moves all Grid Server's plugins toMike Mazur1-7/+16
PluginLoader. Fix issue 1871.
2008-06-26Add patch from bug #1596 - adds Doxygen documentation in OpenSim.Data.MySQL ↵Jeff Ames1-3/+39
files. Thanks kerunix_Flan!
2008-06-13Update svn properties, clean up formatting, refactor out duplicate ↵Jeff Ames1-1/+1
hard-coded port numbers.
2008-06-12Fix mysql migrations. This is tested with an existing up to date schema,Sean Dague1-1/+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.
2008-06-12this, in theory, adds migration support to mysql for all Sean Dague1-2/+30
data sources besides the grid store. It is only lightly tested so the less adventurous should wait a couple of checkins before upgrading.
2008-05-31* Implements UserServer logoff in a few situationsTeravus Ovares1-2/+2
* User tries to log-in but is already logged in. Userserver will send message to simulator user was in to log the user out there. * From the UserServer, admin types 'logoff-user firstname lastname message'. * Some regions may not get the message because they're not updated yet.
2008-05-25Update svn properties. Formatting cleanup.Jeff Ames1-6/+8
2008-05-22add a lock on the update, this should have been there before.Sean Dague1-2/+13
still not convinced this will help, but it was wrong.
2008-05-21this removes use of the mapper for wearables, and I can confirm thingsSean Dague1-19/+29
get saved to the database. There are still issues on wearing things after a cleared cache that I'm looking at now.
2008-05-19autocreate appearance table if it isn't thereSean Dague1-0/+18