#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 ITypeHandler. /// public interface ITypeHandler { /// /// /// /// bool IsSimpleType{get;} /// /// Gets a column value by the name /// /// /// /// object GetValueByName(ResultProperty mapping, IDataReader dataReader); /// /// Gets a column value by the index /// /// /// /// object GetValueByIndex(ResultProperty mapping, IDataReader dataReader); /// /// Retrieve ouput database value of an output parameter /// /// ouput database value /// type used in EnumTypeHandler /// object GetDataBaseValue(object outputValue, Type parameterType); /// /// Sets a parameter on a IDbCommand /// /// the parameter /// the parameter value /// the dbType of the parameter void SetParameter(IDataParameter dataParameter, object parameterValue, string dbType); /// /// 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 object ValueOf(Type type, string s); /// /// 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 bool Equals(object obj, string str); } }