aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/MySQLAuthenticationData.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-27/+31
2012-04-30Consistently use using() to make sure we dispose of used MySqlCommands where ↵Justin Clark-Casey (justincc)1-83/+82
this is not already being done.
2012-04-24Fixed problem with MySQL: it was possible for one thread to use an ↵Oren Hurvitz1-8/+15
incomplete list of column names if another thread was creating the list at the same time. Now this is thread-safe.
2011-03-08Pull up Assembly of the MySQL classes as a protected property, so that it ↵Diva Canto1-1/+7
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.
2010-02-05Updated MySQL connection management to use the MySQL connection pooling. ↵Master ScienceSim1-34/+37
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-7/+11
the grid server after running for several hours
2009-10-06Remove the using() constructs from the new style database modules; they causedMelanie1-32/+30
the underlying connection of a reader or command to be closed before the reader or command itself. Added the proper logic to Close and dispose items in CloseDBConnection. Readers and Connections need Close(), Commands need Dispose(), in the order Reader, Command, Connection. Also reinstated 80-column-friendly formatting
2009-10-05Added CloseDBConnection() to replace the old CloseReaderCommand(). This will ↵John Hurliman1-2/+6
close the MySQLConnection attached to a MySQLCommand. I'm not sure if this accounts for every time a database connection needs to be closed, but it matches up 1:1 with the places where the database connection was previously being closed
2009-10-04* MySQL data tests now pass by fixing a bad fix for a bad cast on the asset ↵John Hurliman1-28/+22
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-09-29Add copyright header. Formatting cleanup.Jeff Ames1-1/+1
2009-09-04Add the new AuthStore to migrations. Update OpenSim.Server.iniMelanie1-0/+3
2009-09-04Fully implement unencrypted auth token operationsMelanie1-0/+52
2009-09-04More work on new authentication serviceMelanie1-12/+23
2009-09-04Add the user authentication data adapter. This is meant to use a new tableMelanie1-0/+146
schema, but can read the old ones for compatibility. It should not be used to write to the old tables unless you know what you're doing! This is untested and will probably not work.