Sorry guys. I had to pull the files. My daily virus scan found a virus in them. I'll update the files as soon as I clean my system.
Sorry for the inconvenience...
This is not an exhaustive list. I haven't gotten into the habit of keeping a change log up-to-date. This is something I'm working on. With that said...
I've made some pretty significant changes to it. First there is now a IDbDataAdapter factory and the wrappers for SqlClient and OleDb. I've restructured the project into a Core project and Mock project. This keeps the Mock code out of the Core. The Core project will contain the configuration handlers and wrappers for SqlClient and OleDb. I'll create sub-projects for other data access libraries (i.e. ODP.NET, Microsoft Oracle, etc.).... read more
Build 0.7.5
-----------
This release adds (finally) wrappers around commands and data readers. Now these two objects
will act like the connection wrappers and throw DataException instead of the specific Provider
exception. These new classes are -
- AbstractCommandWrapper.cs
- SqlCommandWrapper.cs
- OleDbCommandWrapper.cs
- DataReaderWrapper.cs
The connection classes were updated to return the new wrapper commands from their CreateCommand
calls.... read more
This drop of the code represents the first pass at a Mock Objects framework. The code right now has mock objects for connection factory, connection, command, data reader, input parameters (output coming), and transactions.
Also in this release, the dependency on LogKit.NET was removed by popular demand.
The mock framework can be built as two assemblies or a combined assembly. Using nant, on the command line pass in... read more