aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/NHibernate/Resources/SQLiteDialect (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Removed OpenSim.Data.NHibernateJohn Hurliman2009-10-196-427/+0
| | | | * Replaced calls to ThreadPool.QueueUserWorkItem() with ThreadPool.UnsafeQueueUserWorkItem() since OpenSim does not use Code Access Security sandboxing
* * Applied a patch that: Added estate ban table to migration scripts and ↵lbsa712009-02-211-0/+10
| | | | | | | | | | | | | | nhibernate mapping. Refactored property getters and setters for estate ban object to support NHibernate. * Added estate ban table to migration scripts of all supported databases. * Added nhibernate mapping for EstateBans property of EstateSettings * Refactored property accessors for EstateBan object. * Added comments for EstateBan properties. * Ensured that NHibernate tests pass with NUnitGUI. * Ensured that nant test target passes. This fixes mantis #3210. Thank you, tlaukkan!
* * Apply http://opensimulator.org/mantis/view.php?id=3185idb2009-02-201-0/+1
| | | | | | * Fixes NHibernate problem where prim contents show as textures * Thanks Tommil!
* * Apply http://opensimulator.org/mantis/view.php?id=3151Justin Clarke Casey2009-02-193-5/+4
| | | | | | | * Fixes NHibernate overflow exception when saving some objects (under at least PostgreSQL 8.3) * Thanks Tommil!
* * Apply http://opensimulator.org/mantis/view.php?id=3166Justin Clarke Casey2009-02-161-0/+21
| | | | | | | * Adds estate access list supports to NHibernate data module * Thanks Tommil
* line ending fixes and set native eol propertySean Dague2009-02-161-40/+40
|
* Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke2009-02-141-0/+40
| | | | | | | | | | | | | | | | | | | * Created value object for EstateRegionLink for storing the estate region relationship. * Refactored slightly NHibernateManager and NHibernateXXXXData implementations for accesing nhibernate generated ID on insert. ** Changed NHibernateManager.Save method name to Insert as it does Insert. ** Changed NHibernateManager.Save return value object as ID can be both UUID and uint currently. ** Changed NHibernateManager.Load method Id parameter to object as it can be both UUID and uint. * Created NHibernateEstateData implementation. This is the actual estate storage. * Created NHibernate mapping files for both EstateSettings and EstateRegionLink * Created MigrationSyntaxDifferences.txt files to write notes about differences in migration scripts between different databases. * Created estate storage migration scripts for all four databases. * Created estate unit test classes for all four databases. * Updated one missing field to BasicEstateTest.cs * Tested NHibernate unit tests with NUnit GUI. Asset databases fail but that is not related to this patch. * Tested build with both Visual Studio and nant. * Executed build tests with nant succesfully.
* Remove extra ID field from asset DB mapping. Mantis #3122, fixes Mantis #3080.Mike Mazur2009-02-131-1/+0
|
* Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke2009-02-091-0/+1
| | | | | | * Updated migration scripts and hbm.xml so that nhibernate tests work.
* * Apply http://opensimulator.org/mantis/view.php?id=3020Justin Clarke Casey2009-01-201-2/+2
| | | | | | * Adds a grid db implementation and unit tests to the NHibernate module
* Thank you kindly, Tlaukkan (Tommil) for a patch that:Charles Krinke2009-01-125-327/+333
| | | | | | | | | 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.
* Thank you kindly, Tlaukkan (Tommil) for a patch that:Charles Krinke2009-01-112-11/+88
| | | | | | | | | | | | | | | 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.
* * Check in another patch from http://opensimulator.org/mantis/view.php?id=2710Justin Clarke Casey2008-12-043-0/+219
| | | | | | | * This allows removal of the old NHiberate.Mapping.Attributes.dll * Also add in the files I forgot about last time. Doh!
* add inventory store migration Sean Dague2008-06-181-0/+40
|
* fix nhibernate driver so that it starts (based on the appearanceSean Dague2008-06-161-1/+1
| | | | | | | | | | changes it wouldn't come up). include embedded dialect specific sql files for nhibernate migrations figure out how to get the raw db connection so that migrations can work with nhibernate. create initial migration for NHibernate + SQLite + Assets.
* futzing around on the NHibernate side again trying to connectSean Dague2008-06-161-0/+14
migrations into it.