mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
* Yet more inventory shelling
* Very initial MySQL work done * Refactored some of the MySQL code - functions which are passed a reader are no longer getX() but now readX().
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using libsecondlife;
|
||||
|
||||
namespace OpenGrid.Framework.Data.MySQL
|
||||
{
|
||||
class MySQLInventoryData
|
||||
class MySQLInventoryData : IInventoryData
|
||||
{
|
||||
public MySQLManager database;
|
||||
|
||||
@@ -23,7 +24,7 @@ namespace OpenGrid.Framework.Data.MySQL
|
||||
|
||||
public string getName()
|
||||
{
|
||||
return "MySQL Logdata Interface";
|
||||
return "MySQL Inventory Data Interface";
|
||||
}
|
||||
|
||||
public void Close()
|
||||
@@ -35,5 +36,30 @@ namespace OpenGrid.Framework.Data.MySQL
|
||||
{
|
||||
return "0.1";
|
||||
}
|
||||
|
||||
public List<InventoryItemBase> getInventoryInFolder(LLUUID folderID)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public List<InventoryFolderBase> getUserRootFolders(LLUUID user)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public List<InventoryFolderBase> getInventoryFolders(LLUUID parentID)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public InventoryItemBase getInventoryItem(LLUUID item)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public InventoryFolderBase getInventoryFolder(LLUUID folder)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user