mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 08:55:56 +08:00
missing changes
This commit is contained in:
@@ -70,6 +70,14 @@ namespace OpenSim.Data.SQLite
|
||||
{
|
||||
return m_Items.Get(fields, vals);
|
||||
}
|
||||
public XInventoryItem[] GetItems(string field, string[] vals)
|
||||
{
|
||||
return m_Items.Get(field, vals);
|
||||
}
|
||||
public XInventoryItem[] GetItems(string field, string val)
|
||||
{
|
||||
return m_Items.Get(field, val);
|
||||
}
|
||||
|
||||
public bool StoreFolder(XInventoryFolder folder)
|
||||
{
|
||||
@@ -114,6 +122,13 @@ namespace OpenSim.Data.SQLite
|
||||
return m_Items.MoveItem(id, newParent);
|
||||
}
|
||||
|
||||
public bool MoveItems(string[] ids, string[] newParents)
|
||||
{
|
||||
for(int i = 0; i< ids.Length; ++i)
|
||||
m_Items.MoveItem(ids[i], newParents[i]);
|
||||
return true;
|
||||
}
|
||||
|
||||
public bool MoveFolder(string id, string newParent)
|
||||
{
|
||||
return m_Folders.MoveFolder(id, newParent);
|
||||
|
||||
Reference in New Issue
Block a user