-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#45 WIP More work on batching, started building the SQL and reading t…
…he results back. - Changed the signature of the AddExecute* methods, to return the result as an out parameter, and returning the SqlBatch instead. This helps with type parameter inference for the TOut for AddExecuteScalar, as otherwise you would have to specify ALL the types. - Added SqlStringBuilder to help building SQL strings. - Added basic end-to-end batching test. Upgraded the test database files.
- Loading branch information
Showing
53 changed files
with
3,698 additions
and
1,842 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,71 @@ | ||
ErrorGeneratingOutput | ||
© Copyright Web Applications (UK) Ltd, 2017. | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
* Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
* Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in the | ||
documentation and/or other materials provided with the distribution. | ||
* Neither the name of Web Applications UK Ltd nor the | ||
names of its contributors may be used to endorse or promote products | ||
derived from this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL WEB APPLICATIONS UK LTD BE LIABLE FOR ANY | ||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
******************************************************************************* | ||
* WARNING: Do not have this file open during regeneration as it can slow down * | ||
* Visual Studio considerably. * | ||
******************************************************************************* | ||
|
||
Schema code file generation | ||
============================ | ||
Started : 04/28/2017 11:36:04 | ||
Saved helper template files: | ||
CoreLibraries\Database\Generated\SqlProgramGeneric.Generated.txt4 | ||
Saved files: | ||
CoreLibraries\Database\Generated\SqlProgramGeneric32.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric31.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric30.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric29.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric28.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric27.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric26.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric25.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric24.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric23.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric22.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric21.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric20.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric19.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric18.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric17.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric16.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric15.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric14.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric13.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric12.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric11.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric10.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric9.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric8.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric7.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric6.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric5.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric4.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric3.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric2.Generated.cs | ||
CoreLibraries\Database\Generated\SqlProgramGeneric1.Generated.cs | ||
|
||
Finished : 04/28/2017 11:36:06 | ||
Total Duration : 1,828.006 ms |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.