-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #228 from vrogier/develop-v4.6.4
v4.6.4 Release
- Loading branch information
Showing
85 changed files
with
1,464 additions
and
678 deletions.
There are no files selected for viewing
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,3 +1,34 @@ | ||
2020-04-18 Version 4.6.4 Vincent Rogier [email protected] | ||
|
||
* Fixes (C API) | ||
|
||
- Issue #222: Allow OCI_SESSION_SYSDBA for session pools | ||
- Issue #225: Fixed some PL/SQL tables binding issues when statement is an anonymous PL/SQL block | ||
- Issue #226: When NOT using OCI_ENV_CONTEXT environment flag, OCI_CollToText() andOCI_ObjectToText() failed if previous OCILIB call failed | ||
- Issue #227: Enhanced performance when fetching Clobs as strings (for Oracle 11g and above) | ||
|
||
* Miscellaneous (C API) | ||
|
||
- Some performance improvements when converting Objects and Collections to strings | ||
- Some performance improvements when calling OCI_GetString() on non strings columns | ||
- Minor changes in code for addressing some code analysis hints (clang, resharper) | ||
|
||
* Miscellaneous (C++ API) | ||
|
||
- Enhanced Number class in C++ API: | ||
* Restrict arithmetic operations on supported types only | ||
* Arithmetic operations are also now supported between Number objects | ||
- Minor changes in code for addressing code analysis hints (clang, resharper) | ||
- Updated C++ demo application | ||
|
||
* Miscellaneous | ||
|
||
- Updated documentation | ||
- Updated all files Copyright to current year (2020) | ||
- Updated compilers for MS Windows prebuilt binaries | ||
* VS2019 16.5.3 for 32/64 bit DLLs | ||
* Still targeting vc141_xp toolset for backward compatibility | ||
|
||
2019-11-01 Version 4.6.3 Vincent Rogier [email protected] | ||
|
||
* Fixes (C API) | ||
|
@@ -692,7 +723,7 @@ | |
- Collections: | ||
- Added OCI_CollDeleteElem() | ||
- Added OCI_CollGetCount() | ||
- Added OCI_IterGetCurrent() | ||
- Added OCI_IterGetCurrent()w | ||
- Fixed OCI_IterGetPrev() and OCI_IterGetNext() : Last error flag for OCI_GetLastError() was wrongly set if it returned FALSE | ||
- Fixed OCI_ElemGetRaw() : possible segfault could happen | ||
- Fixed OCI_ElemSetNull() : it was not setting correctly the element indicator for collections of objects | ||
|
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,4 +1,4 @@ | ||
# Copyright (c) 2007-2019 Vincent ROGIER <[email protected]> | ||
# Copyright (c) 2007-2020 Vincent ROGIER <[email protected]> | ||
# | ||
# This file is free software; as a special exception the author gives | ||
# unlimited permission to copy and/or distribute it, with or without | ||
|
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 |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
|
||
@SET_MAKE@ | ||
|
||
# Copyright (c) 2007-2019 Vincent ROGIER <[email protected]> | ||
# Copyright (c) 2007-2020 Vincent ROGIER <[email protected]> | ||
# | ||
# This file is free software; as a special exception the author gives | ||
# unlimited permission to copy and/or distribute it, with or without | ||
|
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,6 +1,6 @@ | ||
ocilib -- History of visible changes. | ||
|
||
Copyright (c) 2007-2019 Vincent ROGIER <[email protected]> | ||
Copyright (c) 2007-2020 Vincent ROGIER <[email protected]> | ||
See the end for copying conditions. | ||
|
||
Please send ocilib bug reports to [email protected]. | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* | ||
* Website: http://www.ocilib.net | ||
* | ||
* Copyright (c) 2007-2019 Vincent ROGIER <[email protected]> | ||
* Copyright (c) 2007-2020 Vincent ROGIER <[email protected]> | ||
* | ||
*/ | ||
|
||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* | ||
* Website: http://www.ocilib.net | ||
* | ||
* Copyright (c) 2007-2019 Vincent ROGIER <[email protected]> | ||
* Copyright (c) 2007-2020 Vincent ROGIER <[email protected]> | ||
* | ||
*/ | ||
|
||
|
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 @@ | ||
4.6.3 | ||
4.6.4 |
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,4 +1,4 @@ | ||
# Copyright (c) 2007-2019 Vincent ROGIER <[email protected]> | ||
# Copyright (c) 2007-2020 Vincent ROGIER <[email protected]> | ||
# | ||
# This file is free software; as a special exception the author gives | ||
# unlimited permission to copy and/or distribute it, with or without | ||
|
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,4 +1,4 @@ | ||
# Copyright (c) 2007-2019 Vincent ROGIER <[email protected]> | ||
# Copyright (c) 2007-2020 Vincent ROGIER <[email protected]> | ||
# | ||
# This file is free software; as a special exception the author gives | ||
# unlimited permission to copy and/or distribute it, with or without | ||
|
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 |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
|
||
@SET_MAKE@ | ||
|
||
# Copyright (c) 2007-2019 Vincent ROGIER <[email protected]> | ||
# Copyright (c) 2007-2020 Vincent ROGIER <[email protected]> | ||
# | ||
# This file is free software; as a special exception the author gives | ||
# unlimited permission to copy and/or distribute it, with or without | ||
|
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,4 +1,4 @@ | ||
# Copyright (c) 2007-2019 Vincent ROGIER <[email protected]> | ||
# Copyright (c) 2007-2020 Vincent ROGIER <[email protected]> | ||
# | ||
# This file is free software; as a special exception the author gives | ||
# unlimited permission to copy and/or distribute it, with or without | ||
|
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,4 +1,4 @@ | ||
# Copyright (c) 2007-2019 Vincent ROGIER <[email protected]> | ||
# Copyright (c) 2007-2020 Vincent ROGIER <[email protected]> | ||
# | ||
# This file is free software; as a special exception the author gives | ||
# unlimited permission to copy and/or distribute it, with or without | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* | ||
* Website: http://www.ocilib.net | ||
* | ||
* Copyright (c) 2007-2019 Vincent ROGIER <[email protected]> | ||
* Copyright (c) 2007-2020 Vincent ROGIER <[email protected]> | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
|
Oops, something went wrong.