aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite/SQLiteUserAccountData.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-1/+6
2012-11-14More consistently dispose of SqliteCommand in OpenSim.Data.SQLite where ↵Justin Clark-Casey (justincc)1-12/+13
possible. Not doing SQLiteInventoryStore since this is no longer used and should disappear in the future.
2010-09-23* Add CSharpSqlite to prebuildTeravus Ovares (Dan Olivares)1-1/+5
* Use a conditional define to determine whether we're using CSharpSqlite or Mono.Data.Sqlite #if CSharpSqlite using Community.CsharpSqlite.Sqlite; #else using Mono.Data.Sqlite; #endif * Hopefully, this will restore sqlite functionality on a Mac. In visual studio, you can edit the OpenSim.Data.SQLite project, go to the Build tab and enter CSharpSqlite in the box. I'm not sure how to define CSharpSqlite in Mono, someone better at it then me will have to take the job of figuring out the best way to define it in Mono.
2010-08-15Fix SQLite database plugin for UserAccountData queries with a single word.Marck1-1/+1
2010-04-30rename SQLiteNG to SQLite and SQLite to SQLiteLegacyJustin Clark-Casey (justincc)1-2/+2
this seems the least evil way forward since mono 2.6 and later will see increasing usage, and this only works with what was SQLiteNG MAC USERS WILL NEED TO CHANGE REFERENCES TO "OpenSim.Data.SQLite.dll" to "OpenSim.Data.SQLiteLegacy.dll" in OpenSim.ini and config-include/StandaloneCommon.ini (if using standalone) See the OpenSim.ini.example and StandaloneCommon.ini.example files for more details This commit also temporarily changes unsigned ParentEstateID values in the OpenSim.Data.Tests to signed temporarily, since the new plugin enforces creation of signed fields in the database (which is what the SQL actually specifies). And change data columns in sqlite is a pita.
2010-04-16Bug fix in SQLite/SQLiteUserAccountData.cs: Missing'(' in one of the SQL ↵Diva Canto1-1/+1
statements.
2010-02-20Added UserAccountData and auth to the SQLite connector. Compiles, runs, but ↵Diva Canto1-12/+9
access to these tables doesn't work.
2010-02-05Updated MySQL connection management to use the MySQL connection pooling. ↵Master ScienceSim1-76/+80
This should accommodate various timeout problems that exist with the current connection pool code in a more general and standard way.
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-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 methodsMelanie1-137/+2
from IUserAccountService, we need to define what goes in there. Change the handler to the generic handler. Adjust migrations, add index
2009-11-02Reverting the memory leak patch for MySQL. Problems have been reported with ↵John Hurliman1-42/+45
the grid server after running for several hours
2009-10-06Remove the using() constructs from the new style database modules; they causedMelanie1-38/+36
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-73/+68
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-25minor: remove some mono compiler warningsJustin Clark-Casey (justincc)1-1/+1
2009-09-06Revising the user account data interfaces. No user functionality yetMelanie1-62/+30
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.