OpenSim.Modules.DataValue/src/Storage/MySQL.cs

45 lines
1.0 KiB
C#

using log4net;
using Nini.Config;
using OpenSim.Region.Framework.Scenes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace OpenSim.Modules.DataValue.Storage
{
class MySQL : iStorage
{
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
private Scene m_scene = null;
public MySQL(Scene scene, IConfig config)
{
m_scene = scene;
}
public bool check(String storageID, string key)
{
throw new NotImplementedException();
}
public string get(String storageID, string key)
{
throw new NotImplementedException();
}
public string remove(string storageID, string key)
{
throw new NotImplementedException();
}
public void save(String storageID, string key, string data)
{
throw new NotImplementedException();
}
}
}