aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-02-04- add OpenSim.Framework.AssetMetadata class. AssetBase is now composed of itMike Mazur5-73/+73
- trim trailing whitespace
2009-02-03Embed OpenSim.Data.addin.xml as a resource into OpenSim.Data.dll.Mike Mazur1-0/+21
2009-02-03- moved data plugin loading code from various places toMike Mazur1-0/+141
OpenSim/Data/DataPluginFactory.cs - removed dependencies on a few executable assemblies in bin/OpenSim.Data.addin.xml - trim trailing whitespace
2009-02-03- move OpenSim/Framework/IUserData.cs to OpenSim/Data/IUserData.csMike Mazur1-0/+193
- trim trailing whitespace
2009-02-03- move OpenSim/Framework/IInventoryData.cs toMike Mazur2-10/+167
OpenSim/Data/IInventoryData.cs - trim trailing whitespace
2009-02-03- move IAssetDataPlugin from OpenSim/Framework/IAssetProvider.cs toMike Mazur2-2/+54
OpenSim/Data/IAssetData.cs - remove some trailing whitespace
2009-02-03Rename IAssetProviderPlugin to IAssetDataPlugin aligning with the other data ↵Mike Mazur3-3/+3
plugins.
2009-02-02* Removed the unused Data.Base Frameworklbsa7117-1883/+0
2009-01-29* If an orphaned group is found in the mysql or mssql databases (i.e. there ↵Justin Clarke Casey3-14/+40
is no prim where UUID = SceneGroupID), then force one prim to have UUID = SceneGroupID. * A warning is posted about this on startup giving the location of the object * This should allow one class of persistently undeletable prims to be removed * This change should not cause any issues, but I still suggest that you backup your database beforehand * If this doesn't work for previously linked objects, then you could also try the workaround in http://opensimulator.org/mantis/view.php?id=3059 * This change has been made to mysql and mssql, but sqlite appears to work in a different way
2009-01-28Slight cleanup of docs, removing trailing whitespace.Mike Mazur1-6/+5
2009-01-25Applied patch from #3012 Fixing a minor bug where nhibernate mappings from ↵Adam Johnson1-9/+9
outside OpenSim.Data.NHibernate assembly were not included in sessionFactory. Thanks mpallari!
2009-01-24Update svn properties.Jeff Ames5-357/+357
2009-01-23Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke7-0/+360
* Added Npgsql.dll and Mono.Security.dll which are NpgsqlDriver dlls. * Added missing field to schema creation scripts: PathTaperY. * Added schema creation scripts for PostgreSQL. * Added unit test classes for PostgreSQL. * Added schema creation script folder to NHibernate project in prebuild.xml * Added Npgsql.dll to NHibernate test project dependencies in prebuild.xml * Ensured that build works with both nant and Visual Studio. * Executed build unit tests with nant and NHibernate unit tests with NUnitGUI - Couple of region tests fail due to double precission float rounding errors need to sort out how these are handles in unit tests and if higher precission numeric field needs to be used in Postgresql.
2009-01-22Update svn properties, minor formatting cleanup.Jeff Ames1-1/+1
2009-01-20* Apply http://opensimulator.org/mantis/view.php?id=3021Justin Clarke Casey5-0/+416
* Adds MSSQL 2005 unit tests * Thanks Tommil!
2009-01-20* Apply http://opensimulator.org/mantis/view.php?id=3020Justin Clarke Casey9-42/+460
* Adds a grid db implementation and unit tests to the NHibernate module
2009-01-20* Apply http://opensimulator.org/mantis/view.php?id=3012Justin Clarke Casey1-10/+49
* Allows different assemblies to be used in NHibernateManager, which makes it possible to use mapping and migration files in different assemblies. * Thanks mpallari!
2009-01-19* Remove unused prims.ParentID field from SQLite and MySQLJustin Clarke Casey4-6/+16
* Since this is a db change, as always I strongly recommend that you backup your database before updating to this revision * Haven't touched MSSQL in case I get it wrong - looking for some kind soul to take care of this.
2009-01-18Avoid an invalid cast on legacy dataMelanie Thielker1-1/+8
2009-01-16Minor formatting cleanup, add copyright header.Jeff Ames1-1/+1
2009-01-16Update svn properties.Jeff Ames2-67/+67
2009-01-14* Added MySQL Grid unit testsSean Dague2-0/+348
From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
2009-01-14* Apply http://opensimulator.org/mantis/view.php?id=2995Justin Clarke Casey1-2/+2
* This fixes MSSQL for user friends lookups * Thanks StrawberryFride
2009-01-13* minor: remove some mono compiler warningsJustin Clarke Casey1-1/+3
2009-01-13* Add copyright notice to NHibernate.UserFriendJustin Clarke Casey1-1/+28
2009-01-13* Apply http://opensimulator.org/mantis/view.php?id=2991Justin Clarke Casey1-4/+24
* Puts ordinary getters and setters into NHibernate.UserFriend since previous c# 3.0 get/set failed on MSVC#2005 * Thanks mpallari
2009-01-13* Apply http://opensimulator.org/mantis/view.php?id=2992Justin Clarke Casey2-87/+0
* Removes now unnecessary revision 2 and 3 files that should have been removed in an earlier patch * Thanks tlaukkan!
2009-01-12Thank you kindly, Tlaukkan (Tommil) for a patch that:Charles Krinke10-597/+679
Cleaned up schema creation scripts of MySQL to compliant form and created SQLite scripts from them. In future it would be optimal if scripts from different databases could be generated from MySQL scripts to ensure optimal consistency between schemas of different databases. Did not yet review column names. ID columns seem to have variety in naming which can be confusing.
2009-01-12Fix some C#3.0-isms that broke build in Mono 1.2.6 and MSVC# 2005.Homer Horwitz1-4/+4
Fixes Mantis #2989.
2009-01-12Fixed some svn propertiesHomer Horwitz2-134/+134
2009-01-12* Apply http://opensimulator.org/mantis/view.php?id=2965Justin Clarke Casey6-0/+260
* Adds first version of MsSql2005Dialect support for NHibernate * Thanks mpallari
2009-01-12* Apply http://opensimulator.org/mantis/view.php?id=2980Justin Clarke Casey1-0/+4
* Add single conversion to MSSQLManager.DbTypeFromType * May resolve storage of prim information under MSSQL * Thanks SirKimba
2009-01-11Thank you kindly, Tlaukkan (Tommil) for a patch that:Charles Krinke17-130/+750
Fixed all NHibernate unit tests by implementing missing persistency methods, tables, columns and fixing bugs in the existing implementation. Two minor changes to classes outside NHibernate module: Added Scene instantiation for SceneObjectGroup in OpenSim.Data.Tests.BasicRegionTest as this was required by the NHibernate persistency. In the process added also mock constructor to Scene which only populates RegionInfo in the scene which is used by ScenePart.RegionUUID. NHibernate module is still in experimental state and has not been tested at opensim region or ugaim runtime configuration. Adding unit tests to build is not yet advisable nor using NHibernate module in any production setup.
2009-01-10Thank you kindly, Tlaukkan (Tommil) for a patch that:Charles Krinke1-45/+73
NHibernate MySQL migration was not working as mysql dialect is MySQL5Dialect now instead of MySQLDialect which is the migration sub folder name. Fixed this by adding simple dialect to migration sub type mapping to manager initialization to avoid need of renaming migration script folder each time MySQL version changes. Removed shared session and changed session to be constructed per call as NHibernate session is not thread safe. Refactored manager member names to be according to the naming convention (full words in camel case).
2009-01-08Update svn properties, minor formatting cleanup.Jeff Ames1-5/+5
2009-01-07* Apply http://opensimulator.org/mantis/view.php?id=2948Justin Clarke Casey3-55/+55
* This fixes adding and updating user profiles in MySQL on platforms that have a commas as a decimal separator * Thanks Tommil!
2009-01-07Thank you kindly, StrawberryFride for a patch that:Charles Krinke3-629/+592
Solves the problem of unable to load prim items on region start in MSSQL. The error was in the MSSQLRegionData code that loads objects from the database, due to reliance on the ParentID field that is not used.
2009-01-05* Stop bothering to populate and retrieve the parent local ids for MSSQL, as ↵Justin Clarke Casey1-2/+0
was done for SQLite and MySQL in r7586 * This may resolve http://opensimulator.org/mantis/view.php?id=2939
2009-01-05* Add the actual tests from http://opensimulator.org/mantis/view.php?id=2950Justin Clarke Casey8-0/+669
* Apologies for missing these out yet again * Thanks to Tommil for this code
2009-01-05fixes mantis #2950Justin Clarke Casey5-4/+10
2009-01-05change the drop order to see if this affects unit test failsSean Dague1-1/+1
From: Sean Dague <sdague@gmail.com>
2008-12-30Update svn properties, minor formatting cleanup.Jeff Ames1-5/+5
2008-12-28Thank you kindly, StrawberryFride for a patch that:Charles Krinke1-1/+6
Persists appearance with MSSQL more properly.
2008-12-23* Fix http://opensimulator.org/mantis/view.php?id=2889Justin Clarke Casey1-2/+2
* Primshapes uuid wasn't being converted to raw (non-dashed) format before being used in primshapes delete command
2008-12-23* Correct build break, no idea how that one managed to slip by meJustin Clarke Casey1-1/+1
2008-12-23* Modify SQLite implementation of UpdateUserProfile() to allow modifications ↵Justin Clarke Casey1-16/+21
where the name has not been changed
2008-12-22Update the MySQL connector to 5.2.5. Fixes Mantids#2673. Thanks for the ↵Homer Horwitz1-1/+1
hint, jhurliman.
2008-12-22Thanks Gerhard for a patch that implements part 3 of VolumeDetection / ↵Dahlia Trimble2-0/+15
persistance
2008-12-20Mantis#2881. Thank you kindly, SirKimba for a patch that:Charles Krinke1-5/+5
Solves inserting Wolrdparameters in SQL Database with OpenSim.Data.MSSQL.dll always crash cause there were missing some fields in the Insert-String
2008-12-17* minor: Remove unused AppearanceTableMapper as pointed out by jonc in ↵Justin Clarke Casey1-284/+0
http://opensimulator.org/mantis/view.php?id=2843