| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- 2006-08-24 Vladimir Krasnov <[email protected]>
- * AbstractDBConnection.cs: fixed GetSyntaxPatterns, configuration
- section moved
- 2006-05-09 Boris Kirzner <[email protected]>
- * AbstractDBCommand.cs: only input parameters can be set by specialized methods.
- 2006-05-07 Boris Kirzner <[email protected]>
- * AbstractDBConnection.cs : resolved ambigous reference.
- 2006-03-26 Konstantin Triger <[email protected]>
- * AbstractDataReader.cs: check for SQLServer uniqueidentifier type for VARCHAR.
- 2006-03-21 Boris Kirzner <[email protected]>
- * AbstractDBConnection.cs: resolve abguity.
- 2006-03-05 Konstantin Triger <[email protected]>
- * AbstractDBCommand.cs: differentiate between setting varying and fixed length strings.
- 2006-03-05 Konstantin Triger <[email protected]>
- * AbstractDataReader.cs, ReaderCache.cs: enable provider specific caches.
- 2006-02-26 Konstantin Triger <[email protected]>
- * AbstractDataReader.cs: Prevent recursion when GetXXX is overriden and GetXXXSafe is called.
- * ReaderCache.cs: Added IsNumeric to cache containers.
- * AbstractDBCommand.cs, regex.cs: Refactoring.
- 2006-05-01 Konstantin Triger <[email protected]
- * AbstractDataReader.cs, ReaderCache.cs: use stream interfaces
- where appropriate.
- 2005-14-12 Konstantin Triger <[email protected]>
- * DbPortResolver.cs, AbstractDBConnection.cs: differentiate between the situation where
- don't have a response and where instance name does not exist.
-
- 2005-14-12 Konstantin Triger <[email protected]>
- * DbPortResolver.cs: fix port resolution for unnamed instances.
- 2005-27-11 Boris Kirzner <[email protected]>
- AbstractDBCommand.cs: TARGET_JVM fix. Proper handle of return value
- parameter and corresponding user parameter.
- 2006-22-11 Konstantin Triger <[email protected]>
- * AbstractTransaction.cs: set inner exception.
- 2005-16-11 Boris Kirzner <[email protected]>
- * AbstractDBConnection.cs: TARGET_JVM fix. Throw exception if MSSQL port
- resolution failed.
- 2005-14-11 Boris Kirzner <[email protected]>
- * AbstractDBCommand.cs: TARGET_JVM fix. Provider name can be in any case..
- 2005-13-09 Boris Kirzner <[email protected]>
- * AbstractDBCommand.cs: TARGET_JVM fix. Check for derived parameters
- array length.
- 2005-28-08 Boris Kirzner <[email protected]>
- * ReaderCache.cs:
- - Create Guid from the string fetched.
- 2005-28-08 Boris Kirzner <[email protected]>
- * AbstractDBCommand.cs:
- - Do not check for "select ... from", just add "for browse" if needed.
- Removed unused regex.
- 2005-25-08 Boris Kirzner <[email protected]>
- * AbstractDBCommand.cs:
- - Set max fetch size for jdbc statement.
-
- 2005-21-08 Boris Kirzner <[email protected]>
- * ReaderCache.cs: no not create guid if the value fetched is null.
- * SqlClientStrings.resx: fixed CON_PORT key value.
- 2005-18-08 Boris Kirzner <[email protected]>
- * AbstractDBCommand.cs:
- - Using Java regex instead of .Net ones.
- - Added GetReturnParameter method, used in resolving return value
- user parameter for stored procedures.
- - Do not set max rows for jdbc statement - this causes sp on sql server
- to fail in creating additional rows.
- 2005-22-06 Konstantin Triger <[email protected]>
- * AbstractDataReader.cs: GetBytes should return the data length if target buffer is null
- 2005-21-06 Konstantin Triger <[email protected]>
- * AbstractDataReader.cs: if command is preapred, recalculate params on every ExecReader
|