2020-07-07 22:25:02 +00:00
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-07 23:26:12 +00:00
|
|
|
|
public void remove(string storageID, string key)
|
2020-07-07 22:25:02 +00:00
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void save(String storageID, string key, string data)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|