aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/NHibernate/Resources/PostgreSQLDialect (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * 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-192-9/+8
| | | | | | | * 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/+22
| | | | | | | * 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.
* Update svn properties.Jeff Ames2009-01-245-357/+357
|
* Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke2009-01-235-0/+357
* 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.