using System;
using Umbraco.Core.Logging;
using umbraco.BusinessLogic;
using umbraco.DataLayer;
namespace umbraco.editorControls
{
[Obsolete("Use umbraco.cms.businesslogic.datatype.DefaultData instead")]
public class DefaultData : interfaces.IData
{
private int _propertyId;
private object _value;
protected BaseDataType _dataType;
///
/// Unused, please do not use
///
[Obsolete("Obsolete, For querying the database use the new UmbracoDatabase object ApplicationContext.Current.DatabaseContext.Database", false)]
protected static ISqlHelper SqlHelper
{
get { return Application.SqlHelper; }
}
public DefaultData(BaseDataType DataType) {
_dataType = DataType;
}
#region IData Members
public virtual System.Xml.XmlNode ToXMl(System.Xml.XmlDocument d)
{
if (this._dataType.DBType == DBTypes.Ntext)
return d.CreateCDataSection(this.Value.ToString());
return d.CreateTextNode(Value.ToString());
}
public object Value
{
get
{
return _value;
}
set
{
// Try to set null values if possible
try
{
if (value == null)
using (var sqlHelper = Application.SqlHelper)
sqlHelper.ExecuteNonQuery("update cmsPropertyData set "+ _dataType.DataFieldName +" = NULL where id = " + _propertyId);
else
using (var sqlHelper = Application.SqlHelper)
sqlHelper.ExecuteNonQuery("update cmsPropertyData set "+ _dataType.DataFieldName +" = @value where id = " + _propertyId, sqlHelper.CreateParameter("@value", value) );
_value = value;
}
catch (Exception e)
{
LogHelper.Error(typeof(DefaultData), "Error updating item: " + e.ToString(), e);
if (value==null) value ="";
using (var sqlHelper = Application.SqlHelper)
sqlHelper.ExecuteNonQuery("update cmsPropertyData set "+ _dataType.DataFieldName +" = @value where id = " + _propertyId, sqlHelper.CreateParameter("@value", value) );
_value = value;
}
}
}
public virtual void MakeNew(int PropertyId)
{
// this default implementation of makenew does not do anything sínce
// it uses the default datastorage of umbraco, and the row is already populated by the "property" object
// If the datatype needs to have a default value, inherit this class and override this method.
}
public void Delete() {
// this default implementation of delete does not do anything sínce
// it uses the default datastorage of umbraco, and the row is already deleted by the "property" object
}
public int PropertyId
{
get {
return _propertyId;
}
set
{
_propertyId = value;
using (var sqlHelper = Application.SqlHelper)
_value = sqlHelper.ExecuteScalar