aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL (unfollow)
Commit message (Collapse)AuthorFilesLines
2010-03-01Fix a few compiler warnings.Jeff Ames2-7/+0
2010-03-01Change friends to handle offers as it was originally designed. This mayMelanie1-1/+1
need to be changed in SQLite & MSSQL as well
2010-02-22Changed asset CreatorID to a stringJohn Hurliman1-1/+1
2010-02-22* Adds CreatorID to asset metadata. This is just the plumbing to support ↵John Hurliman1-1/+1
CreatorID, it doesn't modify database backends or OAR files to support storing/loading it
2010-02-21Deleted obsolete files in the Data layer. Compiles.Diva Canto11-2889/+103
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-09Add the friends service skel and correct some namespace issuesMelanie1-1/+1
2010-02-08Make an exception report more clear. Fix a database access in Presence toMelanie1-15/+22
conform to the changes in the generic table handler.
2010-02-07Finish the "Get friends" methodMelanie1-1/+6
2010-02-05Updated MySQL connection management to use the MySQL connection pooling. ↵Master ScienceSim15-2629/+2230
This should accommodate various timeout problems that exist with the current connection pool code in a more general and standard way.
2010-02-05Fixing an incorrect logging message in insertUserRowOpenSim Master1-1/+1
2010-02-05* Fixed the Cable Beach inventory server to save the CreatorID as well as ↵OpenSim Master1-2/+2
properly handling null item names and descriptions * Fixed the MySQL reader to safely handle null values in string columns that can be null
2010-02-05Fixing an incorrect logging message in insertUserRowOpenSim Master1-1/+1
2010-02-05* Fixed the Cable Beach inventory server to save the CreatorID as well as ↵OpenSim Master1-2/+2
properly handling null item names and descriptions * Fixed the MySQL reader to safely handle null values in string columns that can be null
2010-02-06Fixing an incorrect logging message in insertUserRowOpenSim Master1-1/+1
2010-02-06* Fixed the Cable Beach inventory server to save the CreatorID as well as ↵OpenSim Master1-2/+2
properly handling null item names and descriptions * Fixed the MySQL reader to safely handle null values in string columns that can be null
2010-02-05Implement the friends data adaptorMelanie3-6/+23
2010-02-01Beginning of friends.Diva Canto1-0/+56
2010-01-16Fixed a missing field in the last regions table migration.Diva Canto1-0/+1
2010-01-15Add a handful of new region flags and a small migrationMelanie1-0/+6
2010-01-10Add last_seen field to regions tableMelanie1-0/+5
2010-01-09Preliminary work on the new default region setting mechanismMelanie2-0/+32
2010-01-08Add migrations to add fields to user and auth tablesMelanie2-0/+13
2010-01-04Finish conversion if XInventoryServiceMelanie1-6/+49
2010-01-04First stage port of the XInventoryServiceMelanie2-0/+118
2010-01-04Add the data serviceMelanie1-0/+67
2010-01-04AvatarStore. Untested, but completeMelanie2-5/+10
2010-01-04Formatting cleanup. Add copyright headers.Jeff Ames1-3/+3
2010-01-01New LL login service is working! -- tested in standalone only. Things still ↵Diva Canto1-3/+3
missing from response, namely Library and Friends. Appearance service is also missing.
2010-01-01Prevent the creation of duplicate inventory folders in the case of a loginMelanie1-1/+1
database issue. Now the login will instaead fail later.
2010-01-01Auth data migration.Diva Canto1-0/+5
2009-12-31Implement avatar picker queriesMelanie1-2/+36
2009-12-31Implement saving user account dataMelanie1-1/+1
2009-12-30Some modifications to user service. Query by name is implemented nowMelanie1-0/+1
2009-12-29Fixed a couple of bugs that were bombing the data migration.Diva Canto2-2/+2
2009-12-29Polished the IUserService interface.Diva Canto1-4/+4
2009-12-29Change the interface a bit before someone depends on it's current formMelanie1-0/+4
2009-12-29Give the new user tables the once-over. Strip the current set of methodsMelanie4-139/+18
from IUserAccountService, we need to define what goes in there. Change the handler to the generic handler. Adjust migrations, add index
2009-12-29* Added useraccount tableDiva Canto1-0/+13
2009-12-28Add the indices to really make this table workMelanie1-0/+6
2009-12-28Add a migration to add the 3 new fieldsMelanie1-0/+7
2009-12-28Adding new fields and home location methid to presence. Adding cleanupMelanie2-0/+54
(deleting all but one presence record) on logout so that they don't pile up.
2009-12-28Add the second step of the friends migration to pull data from the old table ↵Melanie1-0/+5
into the new
2009-12-28Add the migration for friends and guard the presence Report functionMelanie2-0/+13
2009-12-28Forgot the migration fileMelanie1-0/+15
2009-12-27Add the MySQL presence data moduleMelanie1-0/+93
2009-12-26Correct some issues with the last commitroot1-1/+2
2009-12-26Close a SQL injection loophole in the new database driverMelanie1-2/+3
2009-12-26Make the GenericTableHandler work as intendedroot1-2/+8
2009-12-26Add a generic REPLACE INTO handler for put into the generic table handlerMelanie1-0/+25