aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Data.SQLite/SQLiteRegionData.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Make object persistence more granular by separating prim and prim ↵Justin Clarke Casey2008-01-211-13/+6
| | | | inventory persistence
* * Stopped Physical Object saving on SQLite got commented out in my last ↵Teravus Ovares2008-01-211-3/+3
| | | | commit.. un commenting it out now.
* * Added hooks for logout to all IUserService and all that implement it.Teravus Ovares2008-01-201-3/+3
| | | | | | | * Added a Logout message with a name on the console * Added a *fixme* message to figure out why the current agent session is null * After updating you may notice that there's a login <user> and also a logout<user>
* * More prim inventory synchronizationJustin Clarke Casey2008-01-161-11/+14
| | | | | | * Remove some mysql verbosity
* * Store task inventory when an object is taken into agent inventoryJustin Clarke Casey2008-01-161-41/+43
| | | | | | | | * This means that you can take an object from a region and rez it somewhere else, with its inventory intact. * As for earlier, at this stage only scripts can be placed in inventory * This isn't an efficient implementation, a better one will probably need to come along soonish
* * Mother of all commits:Adam Frisby2008-01-151-2/+2
| | | | | | | * Cleaned up copyright notices in AssemblyInfo.cs's * Added Copyright headers to a bunch of files missing them * Replaced several common string instances with a static constant to prevent reallocation of the same strings thousands of times. "" -> String.Empty is the first such candidate.
* move db open to initialization, which is where it should have beenSean Dague2008-01-141-40/+22
| | | | | | all allong
* * Do database implementation for prim inventory items in mysqlJustin Clarke Casey2008-01-111-17/+34
| | | | | | | | * Properly clean up items when a region object is deleted * Update persisted prim when an inventory script is changed * No user functionality yet
* Switch prim items type representation to use int rather than strings.Justin Clarke Casey2008-01-111-4/+4
|
* moving Region store for SQLite into the OpenSim.Framework.Data.SQLiteSean Dague2008-01-091-0/+1760
namespace to mirror what is done with MySQL. This will require a configuration change for people using SQLite for prims which is given as an example in OpenSim.ini.example