#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 using System.Collections; using IBatisNet.DataMapper.Exceptions; using IBatisNet.DataMapper.Configuration.Statements; namespace IBatisNet.DataMapper.MappedStatements { /// /// Summary description for DeleteMappedStatement. /// public sealed class DeleteMappedStatement : MappedStatement { /// /// Constructor /// /// An SqlMap /// An SQL statement internal DeleteMappedStatement(ISqlMapper sqlMap, IStatement statement) : base(sqlMap, statement) { } #region ExecuteQueryForMap /// /// /// /// /// /// /// /// public override IDictionary ExecuteQueryForMap(ISqlMapSession session, object parameterObject, string keyProperty, string valueProperty ) { throw new DataMapperException("Delete statements cannot be executed as a query for map."); } #endregion #region ExecuteInsert /// /// /// /// /// /// public override object ExecuteInsert(ISqlMapSession session, object parameterObject) { throw new DataMapperException("Delete statements cannot be executed as a query insert."); } #endregion #region ExecuteQueryForList /// /// /// /// /// /// public override void ExecuteQueryForList(ISqlMapSession session, object parameterObject, IList resultObject) { throw new DataMapperException("Delete statements cannot be executed as a query for list."); } /// /// /// /// /// /// /// /// public override IList ExecuteQueryForList(ISqlMapSession session, object parameterObject, int skipResults, int maxResults) { throw new DataMapperException("Delete statements cannot be executed as a query for list."); } /// /// /// /// /// /// public override IList ExecuteQueryForList(ISqlMapSession session, object parameterObject) { throw new DataMapperException("Delete statements cannot be executed as a query for list."); } #endregion /// /// /// /// /// /// /// public override IList ExecuteQueryForRowDelegate(ISqlMapSession session, object parameterObject, RowDelegate rowDelegate) { throw new DataMapperException("Delete statements cannot be executed as a query for row delegate."); } #region ExecuteForObject /// /// /// /// /// /// public override object ExecuteQueryForObject(ISqlMapSession session, object parameterObject) { throw new DataMapperException("Delete statements cannot be executed as a query for object."); } /// /// /// /// /// /// /// public override object ExecuteQueryForObject(ISqlMapSession session, object parameterObject, object resultObject) { throw new DataMapperException("Delete statements cannot be executed as a query for object."); } #endregion } }