#region Apache Notice /***************************************************************************** * $Header: $ * $Revision: $ * $Date: $ * * iBATIS.NET Data Mapper * Copyright (C) 2004 - Gilles Bayon * * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ********************************************************************************/ #endregion #region Using using System; using System.Data; using IBatisNet.DataMapper.Configuration.ParameterMapping; using IBatisNet.DataMapper.Configuration.ResultMapping; #endregion namespace IBatisNet.DataMapper.TypeHandlers { /// /// Summary description for BaseTypeHandler. /// internal abstract class BaseTypeHandler : ITypeHandler { /// /// Gets a column value by the name /// /// /// /// public abstract object GetValueByName(ResultProperty mapping, IDataReader dataReader); /// /// Gets a column value by the index /// /// /// /// public abstract object GetValueByIndex(ResultProperty mapping, IDataReader dataReader); /// /// Retrieve ouput database value of an output parameter /// /// ouput database value /// type used in EnumTypeHandler /// public abstract object GetDataBaseValue(object outputValue, Type parameterType ); public abstract bool IsSimpleType{ get; } /// /// Converts the String to the type that this handler deals with /// /// the tyepe of the property (used only for enum conversion) /// the String value /// the converted value public abstract object ValueOf(Type type, string s); /// /// Sets a parameter on a IDbCommand /// /// the parameter /// the parameter value /// the dbType of the parameter public virtual void SetParameter(IDataParameter dataParameter, object parameterValue, string dbType) { dataParameter.Value = parameterValue; } /// /// Compares two values (that this handler deals with) for equality /// /// one of the objects /// the other object as a String /// true if they are equal public virtual bool Equals(object obj, string str) { if (obj == null || str == null) { return obj == str; } else { object castedObject = ValueOf(obj.GetType(), str); return obj.Equals(castedObject); } } } }