aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-10-03Add the missing bits for the new region-search:Homer Horwitz1-0/+12
- Added lookup in the data-layer - MySQL works - SQLite doesn't have a grid-db, so it won't work there - I added MSSQL-code to the best of my knowledge; but I don't know MSSQL :-) - Added the plumbing up to OGS1GridServices. This speaks with the grid-server via XMLRPC. - Modified MapSearchModule to use the new data. It's backward compatible; if used with an old grid-server, it just returns one found region instead of a list. - Refactored a bit. Note: This updates data, grid-server and region code. No new files.
2008-10-03fix the sqlite break. There were two issue here:Sean Dague1-1/+2
1. type issues on column create in ado.net 2. not setting a field in the ado.net row translates into explicitely setting it to null in sqlite land (because it can't read the defaults stanzas out of the database) Things should work again after this.
2008-10-03Add database persistence for material settingMelanie Thielker2-0/+11
2008-10-01add delete prim tests. Found and fixed bugs where regionSean Dague1-1/+1
is not respected by sqlite or mysql drivers so that deleting and object in a region actually deletes that object from any region.
2008-09-29add a test for updating region settings and fix a bug in uuidSean Dague1-1/+1
translation in sqlite uncovered by this test.
2008-09-26* Patch from JHurlimanTeravus Ovares2-11/+11
* Updates to libomv r2243, * Remove lots of unnecessary typecasts * Improves SendWindData() Thanks jhurliman. * Will update OpenSim-libs in 10 minutes..
2008-09-24Add persistence of active gestures. This needs an UGAIM update to work.Homer Horwitz1-0/+19
Active gestures are sent as part of the login-response. Added fetchActiveGestures to SQLite and MySQL; added an empty one for MSSQL and NHibernate. Using the empty ones won't cause errors, but doesn't provide persistence either, of course.
2008-09-24remove a bunch of out of date inline ALTER table commands that would onlySean Dague1-84/+17
confuse people.
2008-09-23couple of minor test cleanups to see if this gets us past the bamboo humpSean Dague1-8/+0
2008-09-19Small formatting cleanup, before chi11ken notices. Me bad.Homer Horwitz3-20/+39
2008-09-19convert to using proper .net tempfiles, should have done thisSean Dague4-4/+13
initially.
2008-09-18Add a db.Dispose before calling Delete on the SQLite database.Homer Horwitz4-1/+5
On Windows, you are not able to delete a file while there is still a handle to it open.
2008-09-18- Add Dispose method to IRegionDataStoreHomer Horwitz4-10/+97
- Add necessary dummy Dispose-methods where they are missing - Implement the SQLite Dispose-methods (currently only used for unit tests, in the next commit)
2008-09-18* Updates the SQLite region database to support the same properties that the ↵Teravus Ovares2-0/+180
MySQL version does for the table, prims. * If this causes any unit tests to fail, the tests need to be updated.
2008-09-17Adding currentLookAt to useragents table in SQLite. This complements theHomer Horwitz2-0/+15
MySQL change from http://opensimulator.org/mantis/view.php?id=2073
2008-09-16Added some terrain tests, and found a fun race condition in the sqliteSean Dague2-16/+16
terrain driver in the process, which is now fixed. yay for unit tests!
2008-09-16Mantis #904: Thanks jonc, for a patch that adds "useragents" table toHomer Horwitz2-67/+84
SQLite and stores the logout position in standalone mode. Note: This adds a migration for SQLite, so do your runprebuild
2008-09-15Update svn properties, minor formatting cleanup, fix a compiler warning.Jeff Ames1-3/+6
2008-09-14Mantis #2124Melanie Thielker1-0/+19
Thank you, RuudL, for a patch that brings MSSQL up to the same implementation level as MySQL.
2008-09-13* Adds regiondata and estatedata persistence in Sqlite. This commit is ↵Teravus Ovares1-0/+3
actually an assist. 99% of the work was already done by Melanie.
2008-09-13Formatting cleanup.Jeff Ames1-1/+1
2008-09-13* Fixes SQLite load crash. Teravus Ovares1-2/+3
* added primary key to regionsettings table in the cached table * initialized the data adapter. * Still untested fully, so watch out!
2008-09-13Add region settings support to SQLite (untested!)Melanie Thielker1-1/+183
2008-09-13wrap log4net configure in try block so that it will run if you don't have aSean Dague1-1/+5
.config (which no one does). Dropping in the .config lets you see that debug messages, which is handy while writing tests and figuring out why things don't behave like you would guess.
2008-09-132 more InventoryItem tests, plus see if I can leave the log4netSean Dague1-0/+2
configure in there to help me get debug messages while developing.
2008-09-12* Patch http://opensimulator.org/mantis/view.php?id=2163Justin Clarke Casey2-0/+12
* Add prim ClickAction persistence to SQLite * This will require a prebuild * Thanks nlin!
2008-09-12move the actual [Test] methods for databases to OpenSim.Data.TestsSean Dague3-167/+9
classes. This did mean loosing 1 unit test that was actually testing an sqlite function directly instead of the interface.
2008-09-12be more clever and move the bulk of the db tests for inventory intoSean Dague1-140/+3
OpenSim.Data.Tests, then subclass with custom init bits for sqlite. As I've only been testing the plugin interfaces anyway, this should make it very easy to write only a little bit of code to use these tests for other databases. It will also give us the framework for definining the datastore behavior and making sure that all the databases do the same thing.
2008-09-11more inventory folder testsSean Dague1-10/+55
2008-09-11add some folder create and list testsSean Dague1-1/+40
2008-09-11added simple add / exists folder checkSean Dague1-0/+41
2008-09-11add a few more SQLite Asset tests.Sean Dague1-3/+31
2008-09-10added very basic stubs for User and Inventory db creates and emptySean Dague2-0/+146
calls to make sure they worked
2008-09-10fix typo in name of test dbSean Dague1-1/+1
2008-09-10add basic sniff tests for SQLite Asset store. Initializes a db,Sean Dague1-0/+91
stores an asset, fetches that asset, make sure it has the name we gave it. All simple stuff, but should catch the more egregious breaks.
2008-09-10add a simple update attribute test for SOG & SQLiteSean Dague1-2/+22
2008-09-10added in a few more testsSean Dague1-6/+40
2008-09-10the explicit log4net configure attempt was maybe breaking bamboo, getSean Dague1-4/+0
rid of that.
2008-09-10added the first couple of sqlite tests. we'll see how bambooSean Dague2-2/+53
handles them.
2008-09-10add shell for SQLite testing. No tests yet.Sean Dague1-0/+49
add another nant target for test-xml to get the verbose version
2008-09-10Update svn properties, minor formatting cleanup.Jeff Ames1-2/+2
Fix unreachable code due to typo in llDetectedGroup.
2008-09-09* Fixes Sqlite crash bug when saving a prim.Teravus Ovares1-1/+6
2008-09-09possible fix for EARTH SHATTERING KABOOM! when trying to save a primSean Dague1-1/+1
2008-09-09fix an automatically stripped out UUID from SQLiteManagerSean Dague2-7/+7
fix some spacing in SQLiteRegionData
2008-09-09hopefully fix embedded inventory for sqliteSean Dague1-3/+3
2008-09-09Update svn properties, formatting cleanup.Jeff Ames1-1/+1
2008-09-08Implement proper persistence of the following prim properties:Melanie Thielker2-0/+17
Floating text, Rotation, Texture animation, Particle System This will make "Eye Candy" scripts work without modification in XEngine. The use of the CHANGED_REGION_RESTART hack is no longer needed. Implemented in MySQL only, hovertext also in SQLite.
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares7-163/+163
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
2008-08-28Fix for Bug #2065: New check out crashes on sqlite migrationSean Dague1-0/+1
I apparently missed one drop tables statement that was actually needed when I did the cleaning to make this work for old sqlite versions.
2008-08-27cleaning out cruft from pre-Migration daysSean Dague1-103/+1