aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/MySQLAuthenticationData.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-191-27/+31
|
* Consistently use using() to make sure we dispose of used MySqlCommands where ↵Justin Clark-Casey (justincc)2012-04-301-83/+82
| | | | this is not already being done.
* Fixed problem with MySQL: it was possible for one thread to use an ↵Oren Hurvitz2012-04-241-8/+15
| | | | incomplete list of column names if another thread was creating the list at the same time. Now this is thread-safe.
* Pull up Assembly of the MySQL classes as a protected property, so that it ↵Diva Canto2011-03-081-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.
* Updated MySQL connection management to use the MySQL connection pooling. ↵Master ScienceSim2010-02-051-34/+37
| | | | This should accommodate various timeout problems that exist with the current connection pool code in a more general and standard way.
* Reverting the memory leak patch for MySQL. Problems have been reported with ↵John Hurliman2009-11-021-7/+11
| | | | the grid server after running for several hours
* Remove the using() constructs from the new style database modules; they causedMelanie2009-10-061-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
* Added CloseDBConnection() to replace the old CloseReaderCommand(). This will ↵John Hurliman2009-10-051-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
* * MySQL data tests now pass by fixing a bad fix for a bad cast on the asset ↵John Hurliman2009-10-041-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)
* Add copyright header. Formatting cleanup.Jeff Ames2009-09-291-1/+1
|
* Add the new AuthStore to migrations. Update OpenSim.Server.iniMelanie2009-09-041-0/+3
|
* Fully implement unencrypted auth token operationsMelanie2009-09-041-0/+52
|
* More work on new authentication serviceMelanie2009-09-041-12/+23
|
* Add the user authentication data adapter. This is meant to use a new tableMelanie2009-09-041-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.