aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-04-09 20:07:12 +0000
committerJustin Clarke Casey2009-04-09 20:07:12 +0000
commit80ea563bccfbc9dc12b98976bdeb100e6f3052b0 (patch)
treed9487c06a3798477503b1c861eac7ecbfeaf6fc4 /OpenSim/Data/SQLite
parent* minor: remove some mono compiler warnings (diff)
downloadopensim-SC_OLD-80ea563bccfbc9dc12b98976bdeb100e6f3052b0.zip
opensim-SC_OLD-80ea563bccfbc9dc12b98976bdeb100e6f3052b0.tar.gz
opensim-SC_OLD-80ea563bccfbc9dc12b98976bdeb100e6f3052b0.tar.bz2
opensim-SC_OLD-80ea563bccfbc9dc12b98976bdeb100e6f3052b0.tar.xz
* minor: correct some documentation in SQLiteAssetData.cs
Diffstat (limited to 'OpenSim/Data/SQLite')
-rw-r--r--OpenSim/Data/SQLite/SQLiteAssetData.cs10
1 files changed, 2 insertions, 8 deletions
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;
37namespace OpenSim.Data.SQLite 37namespace OpenSim.Data.SQLite
38{ 38{
39 /// <summary> 39 /// <summary>
40 /// A User storage interface for the DB4o database system 40 /// An asset storage interface for the SQLite database system
41 /// </summary> 41 /// </summary>
42 public class SQLiteAssetData : AssetDataBase 42 public class SQLiteAssetData : AssetDataBase
43 { 43 {
44 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); 44 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
45 45
46 /// <summary>
47 /// The database manager
48 /// </summary>
49 /// <summary>
50 /// Artificial constructor called upon plugin load
51 /// </summary>
52 private const string SelectAssetSQL = "select * from assets where UUID=:UUID"; 46 private const string SelectAssetSQL = "select * from assets where UUID=:UUID";
53 private const string SelectAssetMetadataSQL = "select Name, Description, Type, Temporary, UUID from assets limit :start, :count"; 47 private const string SelectAssetMetadataSQL = "select Name, Description, Type, Temporary, UUID from assets limit :start, :count";
54 private const string DeleteAssetSQL = "delete from assets where UUID=:UUID"; 48 private const string DeleteAssetSQL = "delete from assets where UUID=:UUID";
@@ -353,4 +347,4 @@ namespace OpenSim.Data.SQLite
353 347
354 #endregion 348 #endregion
355 } 349 }
356} 350} \ No newline at end of file