#region Apache Notice
/*****************************************************************************
* $Header: $
* $Revision: 476843 $
* $Date$
*
* iBATIS.NET Data Mapper
* Copyright (C) 2008/2005 - The Apache Software Foundation
*
*
* 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 Apache.Ibatis.DataMapper.Exceptions;
using Apache.Ibatis.DataMapper.Model;
using Apache.Ibatis.DataMapper.Model.Statements;
using Apache.Ibatis.DataMapper.Session;
namespace Apache.Ibatis.DataMapper.MappedStatements
{
///
/// Summary description for SelectMappedStatement.
///
public sealed class SelectMappedStatement : MappedStatement
{
///
/// Initializes a new instance of the class.
///
/// The model store.
/// The statement.
public SelectMappedStatement(IModelStore modelStore, IStatement statement)
: base(modelStore, statement)
{ }
#region ExecuteInsert
///
///
///
///
///
///
public override object ExecuteInsert(ISession session, object parameterObject )
{
throw new DataMapperException("Update statements cannot be executed as a query insert.");
}
#endregion
#region ExecuteUpdate
///
///
///
///
///
///
public override int ExecuteUpdate(ISession session, object parameterObject)
{
throw new DataMapperException("Insert statements cannot be executed as a update query.");
}
#endregion
}
}