aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Applied patch from #3012 Fixing a minor bug where nhibernate mappings from ↵Adam Johnson2009-01-251-9/+9
| | | | outside OpenSim.Data.NHibernate assembly were not included in sessionFactory. Thanks mpallari!
* Update svn properties.Jeff Ames2009-01-245-357/+357
|
* Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke2009-01-237-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.
* Update svn properties, minor formatting cleanup.Jeff Ames2009-01-221-1/+1
|
* * Apply http://opensimulator.org/mantis/view.php?id=3021Justin Clarke Casey2009-01-205-0/+416
| | | | | | | * Adds MSSQL 2005 unit tests * Thanks Tommil!
* * Apply http://opensimulator.org/mantis/view.php?id=3020Justin Clarke Casey2009-01-209-42/+460
| | | | | | * Adds a grid db implementation and unit tests to the NHibernate module
* * Apply http://opensimulator.org/mantis/view.php?id=3012Justin Clarke Casey2009-01-201-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!
* * Remove unused prims.ParentID field from SQLite and MySQLJustin Clarke Casey2009-01-194-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.
* Avoid an invalid cast on legacy dataMelanie Thielker2009-01-181-1/+8
|
* Minor formatting cleanup, add copyright header.Jeff Ames2009-01-161-1/+1
|
* Update svn properties.Jeff Ames2009-01-162-67/+67
|
* * Added MySQL Grid unit testsSean Dague2009-01-142-0/+348
| | | | | From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
* * Apply http://opensimulator.org/mantis/view.php?id=2995Justin Clarke Casey2009-01-141-2/+2
| | | | | | | * This fixes MSSQL for user friends lookups * Thanks StrawberryFride
* * minor: remove some mono compiler warningsJustin Clarke Casey2009-01-131-1/+3
|
* * Add copyright notice to NHibernate.UserFriendJustin Clarke Casey2009-01-131-1/+28
|
* * Apply http://opensimulator.org/mantis/view.php?id=2991Justin Clarke Casey2009-01-131-4/+24
| | | | | | | * Puts ordinary getters and setters into NHibernate.UserFriend since previous c# 3.0 get/set failed on MSVC#2005 * Thanks mpallari
* * Apply http://opensimulator.org/mantis/view.php?id=2992Justin Clarke Casey2009-01-132-87/+0
| | | | | | | * Removes now unnecessary revision 2 and 3 files that should have been removed in an earlier patch * Thanks tlaukkan!
* Thank you kindly, Tlaukkan (Tommil) for a patch that:Charles Krinke2009-01-1210-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.
* Fix some C#3.0-isms that broke build in Mono 1.2.6 and MSVC# 2005.Homer Horwitz2009-01-121-4/+4
| | | | | Fixes Mantis #2989.
* Fixed some svn propertiesHomer Horwitz2009-01-122-134/+134
|
* * Apply http://opensimulator.org/mantis/view.php?id=2965Justin Clarke Casey2009-01-126-0/+260
| | | | | | | * Adds first version of MsSql2005Dialect support for NHibernate * Thanks mpallari
* * Apply http://opensimulator.org/mantis/view.php?id=2980Justin Clarke Casey2009-01-121-0/+4
| | | | | | | | * Add single conversion to MSSQLManager.DbTypeFromType * May resolve storage of prim information under MSSQL * Thanks SirKimba
* Thank you kindly, Tlaukkan (Tommil) for a patch that:Charles Krinke2009-01-1117-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.
* Thank you kindly, Tlaukkan (Tommil) for a patch that:Charles Krinke2009-01-101-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).
* Update svn properties, minor formatting cleanup.Jeff Ames2009-01-081-5/+5
|
* * Apply http://opensimulator.org/mantis/view.php?id=2948Justin Clarke Casey2009-01-073-55/+55
| | | | | | | * This fixes adding and updating user profiles in MySQL on platforms that have a commas as a decimal separator * Thanks Tommil!
* Thank you kindly, StrawberryFride for a patch that:Charles Krinke2009-01-073-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.
* * Stop bothering to populate and retrieve the parent local ids for MSSQL, as ↵Justin Clarke Casey2009-01-051-2/+0
| | | | | | | | was done for SQLite and MySQL in r7586 * This may resolve http://opensimulator.org/mantis/view.php?id=2939
* * Add the actual tests from http://opensimulator.org/mantis/view.php?id=2950Justin Clarke Casey2009-01-058-0/+669
| | | | | | | * Apologies for missing these out yet again * Thanks to Tommil for this code
* fixes mantis #2950Justin Clarke Casey2009-01-055-4/+10
|
* change the drop order to see if this affects unit test failsSean Dague2009-01-051-1/+1
| | | | | From: Sean Dague <sdague@gmail.com>
* Update svn properties, minor formatting cleanup.Jeff Ames2008-12-301-5/+5
|
* Thank you kindly, StrawberryFride for a patch that:Charles Krinke2008-12-281-1/+6
| | | | | Persists appearance with MSSQL more properly.
* * Fix http://opensimulator.org/mantis/view.php?id=2889Justin Clarke Casey2008-12-231-2/+2
| | | | | | * Primshapes uuid wasn't being converted to raw (non-dashed) format before being used in primshapes delete command
* * Correct build break, no idea how that one managed to slip by meJustin Clarke Casey2008-12-231-1/+1
|
* * Modify SQLite implementation of UpdateUserProfile() to allow modifications ↵Justin Clarke Casey2008-12-231-16/+21
| | | | where the name has not been changed
* Update the MySQL connector to 5.2.5. Fixes Mantids#2673. Thanks for the ↵Homer Horwitz2008-12-221-1/+1
| | | | hint, jhurliman.
* Thanks Gerhard for a patch that implements part 3 of VolumeDetection / ↵Dahlia Trimble2008-12-222-0/+15
| | | | persistance
* Mantis#2881. Thank you kindly, SirKimba for a patch that:Charles Krinke2008-12-201-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
* * minor: Remove unused AppearanceTableMapper as pointed out by jonc in ↵Justin Clarke Casey2008-12-171-284/+0
| | | | http://opensimulator.org/mantis/view.php?id=2843
* * Implement 'Save Object Back to My Inventory'. On the Linden client this ↵Justin Clarke Casey2008-12-171-1/+1
| | | | | | | | | is in the Tools menu available when editing an object * This facility allows you to save changes to an object that you've rezzed into a region back into their original inventory item without having to take a copy of the rezzed object.
* Color was set twice, first correctly, then incorrectly, in SQLiteRegionData.Homer Horwitz2008-12-141-2/+0
| | | | | Removed the second set. Fixes Mantis#2380.
* Mantis#2811. Thank you kindly, Diva for a patch that resolvesCharles Krinke2008-12-131-1/+1
| | | | | | | some of our DNS/dotted decimal issues that plague teleporting. We are increasing the MajorInterfaceVersion from 1 to 2 in the gridserver, so sims will need to be updated on various grids.
* Move from IP to hostname for seed caps on login, for gridmode and standalone.Homer Horwitz2008-12-111-1/+1
| | | | | | | All the other caps (except the initial one) are already sent with hostname instead of IP. NOTE: This changes gridserver and userserver
* Reinstate setting timeout to never, the default 30 second timeout was ↵idb2008-12-081-1/+1
| | | | causing problems with big migrations
* change a UUID cast to an actual new UUID call to be consistant withSean Dague2008-12-081-1/+1
| | | | | the rest of the assignments here.
* fix an issue I found where primshapes weren't every being removedSean Dague2008-12-081-9/+82
| | | | | | | | because of a logic error. attempt to speed up deletes a bit by batching up all the primitem deletes and primshape deletes into single delete statements. This removes the lock/release/lock/release/lock/release for loop.
* * Check in another patch from http://opensimulator.org/mantis/view.php?id=2710Justin Clarke Casey2008-12-0411-7/+693
| | | | | | | * This allows removal of the old NHiberate.Mapping.Attributes.dll * Also add in the files I forgot about last time. Doh!
* * Minor test correction, comment removalSean Dague2008-12-032-3/+1
| | | | | From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
* Extends Avatar Appearance testsSean Dague2008-12-031-1/+109
| | | | | From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>