aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * SQLite connector for UserAccounts and Auth works. Yey!Diva Canto2010-02-214-53/+69
| |
| * Restored mising m_Connection.Diva Canto2010-02-202-4/+7
| |
| * Fix SQLite locking and make it more fascist for nowMelanie2010-02-211-14/+22
| |
| * Reverted SQLite/SQLiteGenericTableHandler to what it was + singleton.Diva Canto2010-02-201-6/+6
| |
| * SQLite connector better, but access to tables still doesn't work.Diva Canto2010-02-203-28/+62
| |
| * Added UserAccountData and auth to the SQLite connector. Compiles, runs, but ↵Diva Canto2010-02-208-7/+359
| | | | | | | | access to these tables doesn't work.
* | * Adds CreatorID to asset metadata. This is just the plumbing to support ↵John Hurliman2010-02-221-1/+2
|/ | | | CreatorID, it doesn't modify database backends or OAR files to support storing/loading it
* Merge branch 'master' into presence-refactorMelanie2010-02-151-12/+101
|\
| * * SQLite match code casing with regionsettings table field casing (what's ↵Teravus Ovares (Dan Olivares)2010-02-131-1/+1
| | | | | | | | | | | | with the upper case S in Sandbox while the rest is lower case 0.o) * It's doubtful that this will have any effect on mantis http://opensimulator.org/mantis/view.php?id=4577 . Sqlite 3 is required, Sqlite 2 was reported.
| * * This is an attempt to resolve mantis 4437 by using SqliteAdapter type ↵Teravus Ovares (Dan Olivares)2010-02-131-11/+100
| | | | | | | | | | | | | | statements instead of blanket SQL statements. The hope is that this makes SQLite work on Linux/Mono again. Re: http://opensimulator.org/mantis/view.php?id=4437 * Added a 'Create Update Statement' method that takes two fields for a primary key * Added an Update and Delete command for parcels and land access list table rows.
* | Extraneous debug messages removedDiva Canto2010-02-141-4/+0
| |
* | Added UserAccount, Avatar and Authentication to Data.Null, so that OpenSim ↵Diva Canto2010-02-141-28/+39
|/ | | | can run out-of-the-box. #WaitingForSQLite
* minor: remove some mono compiler warningsJustin Clark-Casey (justincc)2010-02-033-6/+3
|
* Add the port of the XInventoryService for the new Sqlite frameworkMelanie2010-01-051-0/+156
|
* Sqlite framework and generic handler. They compile. More I cannot say.Melanie2010-01-042-0/+336
|
* Getting rid of the dead field RootInventoryFolderId on UserProfileData, It's ↵Kunnis2009-12-061-2/+5
| | | | | | not even stored in mysql. Signed-off-by: Melanie <melanie@t-data.com>
* minor: remove some mono compiler warningsJustin Clark-Casey (justincc)2009-11-121-16/+16
|
* Changing the AssetBase constructors to avoid initializing assets with an ↵John Hurliman2009-11-051-4/+5
| | | | unknown asset type, and log an error if it ever does happen
* Removing duplicate SceneObjectPart.RotationalVelocity propertyJohn Hurliman2009-11-021-4/+4
|
* Merge branch 'diva-textures-osgrid'Melanie2009-10-041-5/+9
|\
| * * Creates Util.UTF8 and switches some references of Encoding.UTF8 to ↵John Hurliman2009-10-021-5/+9
| | | | | | | | | | | | Util.UTF8 (not all references were switched since not all OpenSim libraries reference OpenSim.Framework) * Shrinks the largest in-memory object, the LLRAW.HeightmapLookupValue struct (only used for exporting to LLRAW terrain files), to the minimum possible size. This seems to have the odd side effect of cutting the size of the two double[256,256] terrain objects in half. Possibly an alignment optimization?
* | reducing region DB log spamdr scofield (aka dirk husemann)2009-10-021-1/+1
| |
* | - cleaning up LandData/ILandObject capitalization issuesdr scofield (aka dirk husemann)2009-10-021-6/+6
| | | | | | | | - adding LandDataSerializer to OAR mechanics
* | Switched log level of an annoying message in SQLite to Debug, and commented ↵Diva Canto2009-10-011-2/+2
| | | | | | | | it too.
* | Formatting cleanup.Jeff Ames2009-10-011-1/+1
|/
* SceneObjectGroup cleanup. Removes the default constructor and unnecessary ↵John Hurliman2009-09-161-2/+1
| | | | null checks on m_rootPart
* Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensimDiva Canto2009-08-192-36/+21
|\
| * Fixing a spot I missed in assets. Switching Grid to the new naming schema ↵Kunnis2009-08-191-8/+2
| | | | | | | | with Store/Get
| * * Switching IAssetData to follow the new naming schema, removing the ↵Kunnis2009-08-191-28/+19
| | | | | | | | separate insert and update methods.
* | Fixes GetItem and GetFolder for SQLite. Turns out some methods were no-op in ↵Diva Canto2009-08-191-2/+2
|/ | | | | | | SQlite. Fixes most grief in http://opensimulator.org/mantis/view.php?id=4035 http://opensimulator.org/mantis/view.php?id=4027
* Add copyright headers. Formatting cleanup. Fix a compiler warning.Jeff Ames2009-08-171-1/+1
|
* * Fixed MySQL/MySQLAssetData.cs to properly do updates * Removed an extra ↵Kunnis2009-08-161-1/+1
| | | | parameter from MySQL/MySQLInventoryData.cs * Fixed a bug in SQLite/SQLiteAssetData.cs that was causing a NRE when updating an asset. * Improved the BasicAssetTest.cs to do full create/update/get testing * Improved the BasicInventoryTest.cs to do full create/update/get of both a folder and an item * Moved the null ref tests to the start of the PropertyCompareConstraint.cs, so that it doesn't throw when passing in a null item
* * Modified SQLite/SQLiteInventoryStore.cs to not throw if the inventory row ↵Kunnis2009-08-162-18/+14
| | | | does not exist, to match the mysql behavior. * Modified SQLite/SQLiteRegionData.cs to only persist temporary items following the same rules mysql uses. * Added another ignore to the inventory test that was missing. * Added a few more ignores to the RegionTest that the first version of my test were missing. * Added ignoring the root Folder ID, which is set by the inventory system. * Added several improvements to the PropertyCompareConstraint: Protection against infinite loops, added IComparable<T> (for UUID) and moved IComparable before the property matching. * Fixed a bug where I was saving the inside of the ignore expression instead of the outside of it.
* Formatting cleanup.Jeff Ames2009-08-091-1/+1
|
* * Remove hard coded 256 limitations from various places. There's no more ↵Teravus Ovares (Dan Olivares)2009-08-071-9/+9
| | | | 256m limitation within the OpenSimulator framework, however, the LLClient ClientView does not support regions larger then 256 meters so, if you try and make your region larger by setting Constants.RegionSize = 512; in OpenSim.Framework.Constants.cs, the terrain will not display on clients using the LLUDP protocol
* skip sqlite tests on z linux, as sqlite doesn't work right on the platformSean Dague2009-08-065-13/+13
|
* * Updates libOMV to version 0.7.0Teravus Ovares2009-07-251-2/+2
| | | | | | | | * Uses mantis #3811 as a base (thanks jhuliman) with changes. * E-mail regarding interface changes sent to the opensim-dev list * Archive: https://lists.berlios.de/pipermail/opensim-dev/2009-July/007219.html
* * Added a user friendly message to the sqlite regionsettings saver giving ↵Teravus Ovares2009-07-101-1/+17
| | | | | | | them troubleshooting options and telling them to restart the simulator. This situation, hopefully is temporary and generates an exception when sqlite users first start OpenSimulator because of an unexpected condition in the database layer. Restart and all is well. * Added a user friendly message to the 'No IInventoryService available' condition with troubleshooting options.
* more type clean fixes for mono 2.4.2Sean Dague2009-06-191-8/+8
|
* mono 2.4.2 seems a little more type strict, fix some sqlite tests to passSean Dague2009-06-181-2/+2
|
* Thank you kindly, BlueWall, for a patch that solves:Charles Krinke2009-06-101-9/+9
| | | | | SQLite error on creating user.
* Formatting cleanup.Jeff Ames2009-06-101-4/+4
|
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-0114-14/+14
| | | | LICENSE.txt.
* * Upped version number to 0.6.5lbsa712009-05-251-2/+2
|
* * Change default sqlite asset db back to Asset.db instead of AssetStorage.dbJustin Clarke Casey2009-05-151-2/+2
| | | | | | | * This inconsistency has actually existed for some time but only the recent change brought it to light * In the past, the default in ConfigurationLoader took precedence over the one in SQLiteAssetData
* * Consistently use dashed uuid format for sqlite region data, as was ↵Justin Clarke Casey2009-05-072-38/+114
| | | | | | | | | | | previously done for sqlite inventory data. * This revision contains a data migration. Please backup your sqlite region db as a precaution before using this code * I also advise that you do a runprebuild[.sh|.bat] and a clean build ("nant clean build" if you're using the command line). * This change is needed for future id schemes
* * minor: remove some mono compiler warningsJustin Clarke Casey2009-04-291-5/+0
|
* Thanks, Ewe Loon for a patch thatHomer Horwitz2009-04-252-15/+278
| | | | | | provides persistent AvatarAppearance for SQLite. Fixes Mantis #3296.
* silly C# not letting me use a File.Exists test for a directory. Don'tSean Dague2009-04-245-5/+5
| | | | | you know a directory is just a special kind of file on Linux.
* change power linux detection method, the previous method only workedSean Dague2009-04-245-10/+10
| | | | | with interactive logins, not under panda.