From 80ea563bccfbc9dc12b98976bdeb100e6f3052b0 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Thu, 9 Apr 2009 20:07:12 +0000 Subject: * minor: correct some documentation in SQLiteAssetData.cs --- OpenSim/Data/SQLite/SQLiteAssetData.cs | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'OpenSim/Data') diff --git a/OpenSim/Data/SQLite/SQLiteAssetData.cs b/OpenSim/Data/SQLite/SQLiteAssetData.cs index 5a5260a..d3f1308 100644 --- a/OpenSim/Data/SQLite/SQLiteAssetData.cs +++ b/OpenSim/Data/SQLite/SQLiteAssetData.cs @@ -37,18 +37,12 @@ using OpenSim.Framework; namespace OpenSim.Data.SQLite { /// - /// A User storage interface for the DB4o database system + /// An asset storage interface for the SQLite database system /// public class SQLiteAssetData : AssetDataBase { private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); - /// - /// The database manager - /// - /// - /// Artificial constructor called upon plugin load - /// private const string SelectAssetSQL = "select * from assets where UUID=:UUID"; private const string SelectAssetMetadataSQL = "select Name, Description, Type, Temporary, UUID from assets limit :start, :count"; private const string DeleteAssetSQL = "delete from assets where UUID=:UUID"; @@ -353,4 +347,4 @@ namespace OpenSim.Data.SQLite #endregion } -} +} \ No newline at end of file -- cgit v1.1