aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MSSQLMapper/MSSQLDatabaseMapper.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-05-14Formatting cleanup.Jeff Ames1-1/+1
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby1-1/+0
(this took a while to run).
2008-04-02attempt to fix up all refernces to new directory structureSean Dague1-2/+2
2008-04-02whole lot more movingSean Dague1-0/+0
2008-04-02* Reworked Data Framework so that MSSQL workslbsa711-0/+13
* Introduced uint as field type * Removed what should be superfluous Guid handling * Introduced stub MySQLDataReader if we need to fix the Guid handling anyway
2008-03-31Update svn properties.Jeff Ames1-51/+51
2008-03-30* Added competely untested MSSQLMapperlbsa711-51/+51
* Added the new mapper to the mapper factory * Made choice of mapper configurable * This means, in hteory, that we can persist avatar appearance on MSSQL as well
2008-03-25Moved Avatar appearance Factory to its own project so that the reference to ↵MW1-0/+1
MySQLDatabaseMapper could be removed from Region.Environment. Added a using OpenSim.Framework.Data statement to MySQLDatabaseMapper , to try to fix the build problem that has been reported on the mailing list.
2008-03-25* Refactored out circular reference in Region.Environment <-> ↵lbsa711-5/+4
Framework.Data.Base We REALLY need to get the db layer sorted soon...
2008-03-18Formatting cleanup.Jeff Ames1-26/+25
2008-03-03* Doh, forgot one license headerlbsa711-2/+1
2008-02-05Added copyright statements.Jeff Ames1-2/+28
2008-02-04First part of avatar persistence, currently only really works in standalone ↵MW1-4/+5
mode (with accounts_authenticate set to true), it also only currently has a mysql database connector. (sqlite one will follow soon). It also uses the tribalmedia database system, so this needs checking to see if the old problems with mono have been fixed. To use, see the appearance section in opensim.ini.example, set "persist = true", then add the correct connection string for your database.(see mysql-AvatarAppearance.sql in share folder for a example of the table mysql table structure). This could possible be used in a very small grid, but would mean each region server would need to connect to the same mysql database. But the work to move the code to one of the grid servers shouldn't be too much.
2008-01-21* Following on from sdague's r3144, commenting out other parts of TribalMediaJustin Clarke Casey1-0/+2
* This should resolve the current build problem
2008-01-21comment out use of the TribalMedia data mapper layerSean Dague1-1/+1
for now. It doesn't build on new mono at the moment, and isn't currently used. Please make sure this functions on mono 1.2.6 prior to adding it back in for the main tree.
2008-01-16* added missing using clauselbsa711-0/+1
2008-01-16* More work on getting the database framework to actually worklbsa711-1/+1
2008-01-14Set svn:eol-style.Jeff Ames1-24/+24
2008-01-14* Added specialization of DatabaseMapper, DataReader and ObjectFieldMapper ↵lbsa711-0/+24
to support LLVector3, LLQuaternion and LLUUID * Added PrimitiveBaseShapeTableMapper to show how it's done NOTE: Nothing actually works yet - this code should be considered more of educational value until it's all wired together