Author: gbayon
Date: Wed Apr 26 13:12:57 2006
New Revision: 397285
URL: http://svn.apache.org/viewcvs?rev=397285&view=rev
Log:
- Rename files
Added:
ibatis/trunk/cs/mapper/IBatisNet.DataMapper/Commands/InMemoryDataReader.cs
- copied unchanged from r397283,
ibatis/trunk/cs/mapper/IBatisNet.DataMapper/Commands/DataReaderAdapter.cs
Removed:
ibatis/trunk/cs/mapper/IBatisNet.DataMapper/Commands/DataReaderAdapter.cs
Modified:
ibatis/trunk/cs/mapper/IBatisNet.DataMapper/Commands/IPreparedCommandProxy.cs
ibatis/trunk/cs/mapper/IBatisNet.DataMapper/IBatisNet.DataMapper.csproj
Modified:
ibatis/trunk/cs/mapper/IBatisNet.DataMapper/Commands/IPreparedCommandProxy.cs
URL:
http://svn.apache.org/viewcvs/ibatis/trunk/cs/mapper/IBatisNet.DataMapper/Commands/IPreparedCommandProxy.cs?rev=397285&r1=397284&r2=397285&view=diff
==============================================================================
---
ibatis/trunk/cs/mapper/IBatisNet.DataMapper/Commands/IPreparedCommandProxy.cs
(original)
+++
ibatis/trunk/cs/mapper/IBatisNet.DataMapper/Commands/IPreparedCommandProxy.cs
Wed Apr 26 13:12:57 2006
@@ -2,7 +2,7 @@
#region Apache Notice
/*****************************************************************************
* $Header: $
- * $Revision: $
+ * $Revision$
* $Date$
*
* iBATIS.NET Data Mapper
@@ -41,7 +41,7 @@
/// Summary description for IPreparedCommandProxy.
/// </summary>
[CLSCompliant(false)]
- public class IPreparedCommandProxy : IInterceptor
+ public class PreparedCommandProxy : IInterceptor
{
#region Fields
@@ -53,7 +53,7 @@
#region Constructors
- static IPreparedCommandProxy()
+ static PreparedCommandProxy()
{
_passthroughMethods.Add("GetType");
_passthroughMethods.Add("ToString");
@@ -63,7 +63,7 @@
/// Constructor for a connection proxy
/// </summary>
/// <param name="preparedCommand">The connection which been
proxified.</param>
- internal IPreparedCommandProxy(IPreparedCommand preparedCommand)
+ internal PreparedCommandProxy(IPreparedCommand preparedCommand)
{
_preparedCommand = preparedCommand;
}
@@ -79,7 +79,7 @@
internal static IPreparedCommand NewInstance(IPreparedCommand
preparedCommand)
{
object proxyIPreparedCommand = null;
- IInterceptor handler = new
IPreparedCommandProxy(preparedCommand);
+ IInterceptor handler = new
PreparedCommandProxy(preparedCommand);
ProxyGenerator proxyGenerator = new ProxyGenerator();
Modified:
ibatis/trunk/cs/mapper/IBatisNet.DataMapper/IBatisNet.DataMapper.csproj
URL:
http://svn.apache.org/viewcvs/ibatis/trunk/cs/mapper/IBatisNet.DataMapper/IBatisNet.DataMapper.csproj?rev=397285&r1=397284&r2=397285&view=diff
==============================================================================
--- ibatis/trunk/cs/mapper/IBatisNet.DataMapper/IBatisNet.DataMapper.csproj
(original)
+++ ibatis/trunk/cs/mapper/IBatisNet.DataMapper/IBatisNet.DataMapper.csproj Wed
Apr 26 13:12:57 2006
@@ -173,17 +173,17 @@
BuildAction = "Compile"
/>
<File
- RelPath = "Commands\DataReaderAdapter.cs"
+ RelPath = "Commands\DataReaderTransformer.cs"
SubType = "Code"
BuildAction = "Compile"
/>
<File
- RelPath = "Commands\DataReaderTransformer.cs"
+ RelPath = "Commands\DefaultPreparedCommand.cs"
SubType = "Code"
BuildAction = "Compile"
/>
<File
- RelPath = "Commands\DefaultPreparedCommand.cs"
+ RelPath = "Commands\InMemoryDataReader.cs"
SubType = "Code"
BuildAction = "Compile"
/>