aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MSSQL/MSSQLXInventoryData.cs
diff options
context:
space:
mode:
authorBlueWall2011-05-19 01:35:11 -0400
committerBlueWall2011-05-19 01:35:11 -0400
commit584bce36acd00c2e5cc10d3cd8eb6f491acaca13 (patch)
tree1e640ad8658b739bdd8031420971c279716b88db /OpenSim/Data/MSSQL/MSSQLXInventoryData.cs
parentAdd stub for llGetLinkNumberOfSides(integer link) (diff)
parentAllow item links to be deleted even when other deletes and purges are disabled. (diff)
downloadopensim-SC_OLD-584bce36acd00c2e5cc10d3cd8eb6f491acaca13.zip
opensim-SC_OLD-584bce36acd00c2e5cc10d3cd8eb6f491acaca13.tar.gz
opensim-SC_OLD-584bce36acd00c2e5cc10d3cd8eb6f491acaca13.tar.bz2
opensim-SC_OLD-584bce36acd00c2e5cc10d3cd8eb6f491acaca13.tar.xz
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Data/MSSQL/MSSQLXInventoryData.cs')
-rw-r--r--OpenSim/Data/MSSQL/MSSQLXInventoryData.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Data/MSSQL/MSSQLXInventoryData.cs b/OpenSim/Data/MSSQL/MSSQLXInventoryData.cs
index 5bc4fe4..01689a4 100644
--- a/OpenSim/Data/MSSQL/MSSQLXInventoryData.cs
+++ b/OpenSim/Data/MSSQL/MSSQLXInventoryData.cs
@@ -79,11 +79,21 @@ namespace OpenSim.Data.MSSQL
79 return m_Folders.Delete(field, val); 79 return m_Folders.Delete(field, val);
80 } 80 }
81 81
82 public bool DeleteFolders(string[] fields, string[] vals)
83 {
84 return m_Folders.Delete(fields, vals);
85 }
86
82 public bool DeleteItems(string field, string val) 87 public bool DeleteItems(string field, string val)
83 { 88 {
84 return m_Items.Delete(field, val); 89 return m_Items.Delete(field, val);
85 } 90 }
86 91
92 public bool DeleteItems(string[] fields, string[] vals)
93 {
94 return m_Items.Delete(fields, vals);
95 }
96
87 public bool MoveItem(string id, string newParent) 97 public bool MoveItem(string id, string newParent)
88 { 98 {
89 return m_Items.MoveItem(id, newParent); 99 return m_Items.MoveItem(id, newParent);