aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Data.SQLite (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-03-11this fixes up the exponentially growing startup times causedSean Dague1-9/+8
by not deleting the landaccesslist. If this triggers an sqlite error on .NET, we'll need to track that down seperatly.
2008-03-09* Added a hack-ish routine to add the State column to the primshapes table ↵Teravus Ovares1-1/+11
if it wasn't already there. * Started OpenSim on SQLite to a mass of red 'unable to load prim' messages. * If you are getting this message, after this update, when you start OpenSimulator, you'll get it one more time and then it'll work again.
2008-03-08Thank you kindly Grumly57 for a patch to solve:Charles Krinke2-0/+4
Grass type is not persisted. Try to rez some grass several time to have different random grass types around, then immediately move a couple of them. Or restart the sim and logon again. You'll see all grass types reverted to a dull default one :-)
2008-03-03* Applying Ahzz's profile patch. Thanks Ahzz! Teravus Ovares1-4/+4
* Fixed a few bugs in the patch that are sim crashers. * There's still a bug in mySQL mode/ grid mode where the main userprofile text doesn't save.
2008-03-02* Temporarily commented out the parcel banlist clearing query that was being ↵Teravus Ovares1-7/+8
called in an ad-hoc fashion and causing an access violation error. This means that in SQLite when subdividing parcels you'll have to go to the parcel and clear out the banlist with the client instead of having it done for you immediately when you split the parcel. * A database guy really needs to look at the land stuff. :D
2008-02-20Minor cleanup.Jeff Ames2-2/+2
2008-02-19Remove "Loading inventory" messages from item inventory loadsJustin Clarke Casey1-2/+2
2008-02-19* Committing Ahzz's patch number 620.Teravus Ovares1-135/+177
* Description SQLITE Inventory Table locks. *Provided by Openlfiegrid.com * Provides missing inventory table locks in SQLite.
2008-02-11From: dirk husemann <hud@zurich.ibm.com>Sean Dague1-2/+3
these two patches fixe the terrain load exception that occurs when restarting OpenSim on PPC32 by making terrain loading endian clean. it does NOT fix the client crash exception. need to hunt that one down.
2008-02-10Clean up logging calls using String.Format explicitlyJeff Ames1-9/+8
2008-02-07Update version numbers to 0.5Jeff Ames1-1/+1
2008-02-05Converted logging to use log4net.Jeff Ames5-58/+68
Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
2008-02-03Thanks to Brianw for pointing out the definition of OwnerUUIDCharles Krinke1-1/+1
needed to be consistent with the definition of owner_uuid. They are both varchar(36) now.
2008-02-02* Added Full support for llSetTextureAnim. To ckrinke: Let the fountains ↵Teravus Ovares1-3/+3
of Wright Plaza flow! * Fixed another bug in LibSL. This is the same version, as before just with a bug fix.
2008-01-23put the number in front of the migrations to make them easier to deal withSean Dague4-0/+0
2008-01-21* Scripts edited within a prim will now be persisted correctlyJustin Clarke Casey1-61/+32
* On restart the latest save will be restored rather than the very first dragged in scripts * Also add previously missed out database commits to separate prim inventory commit path (sigh)
2008-01-21Method renameJustin Clarke Casey1-1/+1
2008-01-21Properly lock new separate database accessesJustin Clarke Casey1-52/+55
2008-01-21* Make object persistence more granular by separating prim and prim ↵Justin Clarke Casey1-13/+6
inventory persistence
2008-01-21* Stopped Physical Object saving on SQLite got commented out in my last ↵Teravus Ovares1-3/+3
commit.. un commenting it out now.
2008-01-20* Added hooks for logout to all IUserService and all that implement it.Teravus Ovares2-7/+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>
2008-01-17parametrize like clauses for avatar pickerSean Dague1-18/+23
2008-01-16* More prim inventory synchronizationJustin Clarke Casey1-11/+14
* Remove some mysql verbosity
2008-01-16* Store task inventory when an object is taken into agent inventoryJustin Clarke Casey1-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
2008-01-15* Restore non dash asset UUID persistence which was made dashed in r3069Justin Clarke Casey1-6/+6
* Apologies, any sqlite databases created between r3069 and this change will now contain unfindable assets. * But sqlite asset databases used previous to r3069 will now work again. * This change may have been done on purpose, so it's not impossible it will be re-reverted
2008-01-15* Mother of all commits:Adam Frisby4-7/+35
* 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.
2008-01-14my Exists check was slow and wrong. This fixes issues peopleSean Dague1-5/+24
were just having on IRC. Thanks to Grumly57 for helping to sort this out.
2008-01-14good bye ADO.NET to assets, notice faster startup timeSean Dague1-103/+66
2008-01-14move db open to initialization, which is where it should have beenSean Dague1-40/+22
all allong
2008-01-11* Do database implementation for prim inventory items in mysqlJustin Clarke Casey1-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
2008-01-11manually open the db connection. Mono does this automatically, .NET doesn'tSean Dague1-0/+1
2008-01-11Log instead of crash (User login, getting friends list)Tedd Hansen1-9/+17
2008-01-11Switch prim items type representation to use int rather than strings.Justin Clarke Casey1-4/+4
2008-01-10move Friends list to not use ADO.NET layer, it now hits the sqliteSean Dague1-96/+43
db directly when needed
2008-01-10add sqlite database definitions as Resources for SQLite.dllSean Dague4-0/+197
2008-01-09* This may be broken.. it hasn't been tested, however I wanted to get the ↵Teravus Ovares1-0/+24
last database changes in before sdauge changes them significantly.
2008-01-09moving Region store for SQLite into the OpenSim.Framework.Data.SQLiteSean Dague1-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
2008-01-09* Added a hashtable based HTTP processor in preparation of the web_login_keyTeravus Ovares1-0/+21
* Added the web_login_key to the users table * Added happy configurable http error message pages * This update is large enough to have 'awe' value.. so backup your users or weep. * Not tested on MSSQL, even though I added code to update the tables!
2008-01-01* You can add and remove a friend in standalone now within the same ↵Teravus Ovares1-8/+36
simulator. It saves. * You can add and remove a friend in grid mode now within the same simulator. It doesn't save yet. * I got rid of Mr. OpenSim as a friend.. he bothers me /:b...
2007-12-31* Added database and UserManagerBase glue for FriendsList managementTeravus Ovares2-6/+191
* Don't forget to run prebuild
2007-12-30* Fixed References in Prebuild so the project compilesTeravus Ovares1-0/+25
* Added Friends List methods to IUserData interface * Created Stub friendslist Database Methods
2007-12-27* Optimized usingslbsa716-30/+31
* shortened references * Removed redundant 'this' * Normalized EOF
2007-12-24Log message tweakingJustin Clarke Casey1-5/+5
2007-12-20Revert a couple of UUIDs back to hyphenated since we actually sometimes ↵Justin Clarke Casey1-2/+2
store as hyphenated, sometimes not...
2007-12-20Convert an sqlite user LLUUID I'd missedJustin Clarke Casey1-1/+1
2007-12-20Convert some inventory ids I managed to missJustin Clarke Casey1-5/+5
2007-12-20Fix up other sqlite db interactions to use non-hyphenated uuidJustin Clarke Casey3-13/+13
Inventory contents retrieval and persistent region storage standalone now appear to work as well as they did before :) This patch will not fix grid problems. May be bugs present due to conversions I didn't spot. I personally probably don't have any more time for this today. I'm also not entirely convinced this is the right way forward so this might be a handy pause for thought. I'll also be delighted if I wake up tommorrow and everything is fine again.
2007-12-20Establish Util.ToRawUuidString to get LLUUIDs in unhyphenated formJustin Clarke Casey1-24/+24
Apply method to UUID crud in SqliteInventoryStore as an initial test This appears now to successfully recover inventory upon login This will almost certainly only work on standalone
2007-12-20Added patch from Johan. First attempt to solve the LibSL.Packet GC problem. ↵Jeff Ames1-2/+2
Works with LibSL rev>1532
2007-12-19Misc. cleanup:Jeff Ames1-1/+1
* added Util.Clip(value, min, max) * modified asset cache's numPackets calculation to use max packet size (600) instead of 1000 * removed a few magic numbers