* 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:
Adam Frisby
2007-05-31 14:05:19 +00:00
parent c955e2fe9b
commit a0305888bc
5 changed files with 76 additions and 24 deletions

View File

@@ -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;
}
}
}