Add the ability to query the MYSQL databse for a list of the stored prim UUIDs

This commit is contained in:
Melanie
2012-06-07 22:39:03 +02:00
parent 4942314435
commit 26c5b32988
8 changed files with 63 additions and 0 deletions

View File

@@ -148,5 +148,10 @@ namespace OpenSim.Services.Connectors
{
m_database.RemoveRegionWindlightSettings(regionID);
}
public UUID[] GetObjectIDs(UUID regionID)
{
return m_database.GetObjectIDs(regionID);
}
}
}