#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; using System.Collections; using IBatisNet.DataMapper.Exceptions; using IBatisNet.Common; using IBatisNet.DataMapper.Configuration.Statements; namespace IBatisNet.DataMapper.MappedStatements { /// /// Summary description for SelectMappedStatement. /// public class SelectMappedStatement : MappedStatement { /// /// Constructor /// /// An SqlMap /// An SQL statement internal SelectMappedStatement( SqlMapper sqlMap, IStatement statement ): base(sqlMap, statement) { } #region ExecuteInsert /// /// /// /// /// /// public override object ExecuteInsert(IDalSession session, object parameterObject ) { throw new DataMapperException("Update statements cannot be executed as a query insert."); } #endregion #region ExecuteUpdate /// /// /// /// /// /// public override int ExecuteUpdate(IDalSession session, object parameterObject ) { throw new DataMapperException("Insert statements cannot be executed as a update query."); } #endregion } }