aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/MySQLMigrations.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-3/+3
2010-06-19Revert "This is a HACK! Downright nasty. For some reason, the devs of the mysql"Melanie1-7/+0
Didn't do what it said on the package! This reverts commit 8643db3ef0c4dca709d85fc37240a18fd9049520.
2010-06-19This is a HACK! Downright nasty. For some reason, the devs of the mysqlMelanie1-0/+7
connector have decided that their vision of timeouts is the only valid one. This uses reflection to show them the finger. Please test.
2010-06-17Revert "Set command timeout to infinity on migrations"Melanie1-1/+0
This reverts commit 51d30fd34a950e0cd71d61ce0666a6d1e90bf233.
2010-06-17Set command timeout to infinity on migrationsMelanie1-0/+1
2010-05-19Clean up output a bitMelanie1-5/+1
2010-05-19Revert "Allow migration steps to fail again without bringing down the house"Melanie1-1/+1
This reverts commit 167db502593de5f535d8c322005c63ef263940ed.
2010-05-19Allow migration steps to fail again without bringing down the houseMelanie1-1/+1
2010-05-18Make m_log in migrations private. Define new m_log in derived classMelanie1-0/+2
2010-05-18Added MySqlMigrations.cs (supports stored proc/funcs)AlexRa1-33/+36
Uses MySqlScript class to correctly run proc/func definitions that need delimiter change. Requires MySql.Data.dll 6.2 or later.
2010-02-05Updated MySQL connection management to use the MySQL connection pooling. ↵Master ScienceSim1-49/+13
This should accommodate various timeout problems that exist with the current connection pool code in a more general and standard way.
2009-11-02Removing Console.WriteLine()s that were brought in with the revertJohn Hurliman1-2/+0
2009-11-02Reverting the memory leak patch for MySQL. Problems have been reported with ↵John Hurliman1-8/+5
the grid server after running for several hours
2009-10-06Remove the using() constructs from the new style database modules; they causedMelanie1-4/+10
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-7/+7
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-10/+4
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-04More work on new authentication serviceMelanie1-0/+8
2009-09-04Add the user authentication data adapter. This is meant to use a new tableMelanie1-0/+115
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.