aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Data.MySQL/MySQLAssetData.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-04-02whole lot more movingSean Dague1-198/+0
2008-03-28* Introduced common abstract AssetDataBase implementing IAssetProviderlbsa711-9/+9
* changed the semantics of SQLiteBase to SQLiteUtils * Added abstract placeholder files for the other db providers
2008-03-18Formatting cleanup.Jeff Ames1-26/+25
2008-02-20Minor cleanup.Jeff Ames1-1/+1
2008-02-10Clean up logging calls using String.Format explicitlyJeff Ames1-7/+7
2008-02-05Converted logging to use log4net.Jeff Ames1-8/+10
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-04* Synchronize asset storage operations to mysql as well as readsJustin Clarke Casey1-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
2008-02-04A smidgen more error info for the asset serverJustin Clarke Casey1-4/+5
2008-01-30* Print out exception information when a mysql asset fetch failsJustin Clarke Casey1-16/+29
* Attempt reconnection on fetch and create exceptions.
2007-12-27* Optimized usingslbsa711-7/+7
* shortened references * Removed redundant 'this' * Normalized EOF
2007-12-08Adding an explicit close() and dispose() in the hope that it might help with ↵Brian McBee1-0/+3
assetserver issues.
2007-11-26Attempt to handle MYSQL error fetching assetsBrian McBee1-10/+17
2007-11-01Need to clean up resources when creating/updating assetsTleiades Hax1-0/+1
2007-11-01(no commit message)Tleiades Hax1-10/+14
2007-10-30* Optimized usingslbsa711-20/+23
* Shortened type references * Removed redundant 'this' qualifier
2007-10-29as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW1-1/+1
Have flattened the OpenSim.Framework project/namespace. The problem is that the namespace is still wrong as its "OpenSim.Framework" while the directory is "OpenSim\Framework\General" , so we need to decide if we change the directory or correct the namespace. Note this has lead to a big flat project, but I think a lot of the files we most likely don't even use any longer. And others belong in other projects/namespaces anyway.
2007-10-26Very early first implementation of grid based assets.Tleiades Hax1-14/+16
Run this on a major grid, and weep
2007-10-19get rid of all the ^M line endingsSean Dague1-159/+159
2007-10-15* Applied Chillken patch #418: copyright-r2094.patch updating copyright ↵lbsa711-0/+28
messages. Thanks Chillken!
2007-10-13OpenSimMain now respects the asset_plugin paramter, and storing of assets ↵Tleiades Hax1-2/+21
will *not* throw an exception
2007-10-13Added capbility to use MySQL as the database backend in stand alone mode for ↵Tleiades Hax1-21/+2
assets and inventory. Added asset_plugin key to "StandAlone" section of OpenSim.ini
2007-10-13(no commit message)Tleiades Hax1-2/+21
2007-10-13Asset server implementation. Again one of these "plumbing" releases, where ↵Tleiades Hax1-0/+112
no real functionality has been introduced, but ground work has been made, enabling the asset server, and preparing the sim server to query the asset server. Introduced an "IPlugin" interface, which plugins can inherit from.