aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Data.MySQL (follow)
Commit message (Collapse)AuthorAgeFilesLines
* whole lot more movingSean Dague2008-04-0222-4925/+0
|
* * Introduced common abstract UserDataBase providerlbsa712008-03-281-21/+21
| | | | | | * Weeded out multiple AvatarPickerAvatar classes
* * Send full inventory folder skeleton to standalone client logins rather ↵Justin Clarke Casey2008-03-281-6/+2
| | | | | | | | | than just the root child folders * This may resolve some current problems with non root child folders on standalone installations. * A fix for the same problem in grid mode will come soon.
* * Introduced base abstract provider class for GridDatalbsa712008-03-281-12/+12
|
* * Introduced common abstract AssetDataBase implementing IAssetProviderlbsa712008-03-281-9/+9
| | | | | | * changed the semantics of SQLiteBase to SQLiteUtils * Added abstract placeholder files for the other db providers
* * Refactored out circular reference in Region.Environment <-> ↵lbsa712008-03-251-52/+0
| | | | | | | Framework.Data.Base We REALLY need to get the db layer sorted soon...
* Comment out unused private methods.Jeff Ames2008-03-251-38/+40
|
* *Moved LandManagement into its own region module (spiffy!)mingchen2008-03-221-4/+3
|
* * Applying Mantis Patch #518.2 - State not persisted in MySQL DataStoreAdam Frisby2008-03-181-0/+35
|
* Formatting cleanup. Minor refactoring.Jeff Ames2008-03-181-1/+1
|
* * Added the ability to type the partial name of a region in the start ↵Teravus Ovares2008-03-181-0/+41
| | | | | | | location box and go to that region if it's there. If no close match was found, it sends you home. This is tested on mySQL. There's untested code on grids that are based on sqlite and MSSQL. The SQL statements *should* be right, but your results may very. * Ex, if you want to go to Wright Plaza, you simply need to type Wright Plaza in the start location in the client when you log-in.
* Formatting cleanup.Jeff Ames2008-03-189-239/+232
|
* Formatting cleanup.Jeff Ames2008-03-182-47/+30
|
* Last position will be stored in the DB on logout, and the avatar can ↵Johan Berntsson2008-03-182-3/+62
| | | | continue from the same position in the next login (only with MySQL at the moment)
* this is a believed fix for some of the MySQL races. Testing wouldSean Dague2008-03-131-29/+24
| | | | | | be appreciated.
* * Increase inventory description columns from 64 characters to 128Justin Clarke Casey2008-03-071-1/+1
| | | | | | | | As per the suggestions in Mantis 687 (thanks Sakai) to resolve an exception * This won't apply to any existing inventory tables you have, but shouldn't cause any issues with old tables either
* Fix to solve mantis 717 problem. Makes sure the region DB schema is up to ↵Johan Berntsson2008-03-073-2/+26
| | | | date and consistent
* Fixed SQL update errorJohan Berntsson2008-03-041-0/+1
|
* Merged 3Di code that provides scene and avatar serialization, and plugin ↵Johan Berntsson2008-03-044-4/+72
| | | | support for region move/split/merge. See ThirdParty/3Di/README.txt. Unless the new modules are used there should be no noticeable changes when running OpenSim.
* * Applying Ahzz's profile patch. Thanks Ahzz! Teravus Ovares2008-03-032-6/+115
| | | | | | * 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.
* * Doh, forgot one license headerlbsa712008-03-031-2/+1
|
* Thank you very much, Ahzzmandius for:Charles Krinke2008-03-021-44/+26
| | | | | | | converts Parse calls to TryParse Replaces string.empty and lluuid.zero calls on user load to use real values from DB (related to user profile save/load work. Finer grained patching)
* Minor cleanup.Jeff Ames2008-02-202-30/+20
|
* Remove "Loading inventory" messages from item inventory loadsJustin Clarke Casey2008-02-191-1/+1
|
* More exception checks and crash hintsTedd Hansen2008-02-181-2/+2
| | | | | If no scriptengine is specified then don't try to load any.
* *fixed varchar size typo in createuserfriendstable.sqlTeravus Ovares2008-02-131-1/+1
|
* * Split out MSSQLManager Test/Init into each provider.lbsa712008-02-131-85/+1
| | | | | | | | | * Made regions table name configurable (MSSQL only) * Added a note in ini.example pointing out that the sql resources have to change if you change table names * Removed duplicate picker method from GridData interface [Provided by openlifegrid.com]
* * Introduced customizable table names on MySQL and MSSQL UserData plug-ins.lbsa712008-02-132-30/+52
| | | | | | [Provided by openlifegrid.com]
* Clean up more unnecessary String.Format callsJeff Ames2008-02-131-42/+42
|
* * Add missing locking to mysql inventory pluginJustin Clarke Casey2008-02-121-20/+31
| | | | | | * Should resolve mantis 542
* Moved share/sql/mysql-AvatarAppearance.sql to ↵Tedd Hansen2008-02-111-0/+42
| | | | | | | OpenSim/Framework/Data.MySQL/Resources/AvatarAppearance.sql as described in share/sql/mysql_README.txt Thanks dmiles_afk
* * Added some connection debugginglbsa712008-02-111-1/+9
|
* From: dirk husemann <hud@zurich.ibm.com>Sean Dague2008-02-111-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.
* Clean up logging calls using String.Format explicitlyJeff Ames2008-02-102-23/+22
|
* Converted logging to use log4net.Jeff Ames2008-02-056-87/+99
| | | | | | Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
* Reverted MySQLDataStore.cs to not use static mutexes any more, patch didn't ↵Tedd Hansen2008-02-051-37/+24
| | | | | | | work anyway. Added js to OpenSim.ini.example.
* Added copyright statements.Jeff Ames2008-02-051-2/+28
|
* * Synchronize asset storage operations to mysql as well as readsJustin Clarke Casey2008-02-041-31/+35
| | | | | | * This may help with asset server mysql problems, since both the previous osgrid failures occurred when both a read and write were attempted in the same second
* A smidgen more error info for the asset serverJustin Clarke Casey2008-02-041-4/+5
|
* First part of avatar persistence, currently only really works in standalone ↵MW2008-02-041-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.
* fix for error on null owner_uuid fieldBrian McBee2008-02-021-1/+8
|
* Change casting slightly for reading owner_uuid from mysql.Charles Krinke2008-02-021-2/+3
|
* Thank you very much daTwitch for your first contribution to the C# simulator.Charles Krinke2008-02-021-5/+36
| | | | | | This is the beginnings of support for storage of region owner in the MySQLManager table and the use of "owner_uuid".
* Added commands to change config file from console:Tedd Hansen2008-02-021-3/+13
| | | | | | | | | CONFIG SET section key value value value CONFIG GET section key CONFIG SAVE (it saves, but does it save correctly?:) ScriptEngine will react correctly to any config change made while it is running.
* Hopefully fixed MySQL DB crash on startup issue (so we can remove 3 sec wait).Tedd Hansen2008-02-021-2/+3
| | | | | | Added option to try alternate UDP ports if the one configured is in use. UDP packets are now bound to the actual outside IP address and hopefully won't "randomly" select IP on multihomed systems.
* Last patch was a disaster... reset terrain whenever bug occurred. Trying ↵Tedd Hansen2008-02-021-65/+64
| | | | again with some modifications on Mutex.
* And one more patch before sleepTedd Hansen2008-02-021-28/+43
| | | | | This annoying sleep during startup-problem still sometimes causes exceptions, so added some retry...
* Removed "Loading inventory for Primitive" message.Tedd Hansen2008-02-011-1/+1
| | | | | Fixed small bug in thread counter.
* * Print out exception information when a mysql asset fetch failsJustin Clarke Casey2008-01-301-16/+29
| | | | | | * Attempt reconnection on fetch and create exceptions.
* * Reinsert 3 second land loading delay of r3132 accidentally removed in r3141.Justin Clarke Casey2008-01-241-0/+3
| | | | | | * Sorry Tedd!