summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2024-12-09fix release notes to properly reflect the change (#81)HEADmasterDave Cramer
2024-12-09Update release notes and versions for 17.00.0004 (#80)Dave Cramer
2024-11-25updated release notes from 17_0003 back to 16_0000 (#78)Dave Cramer
2024-09-27update version numbers for release 17 (#52)Dave Cramer
* update version numbers for release 17
2024-09-27release 16_00_0006 bugfix for double free (#50)Dave Cramer
* release 16_00_0006 bugfix for double free
2024-09-23prepare release notes and update version in configure.ac (#45)Dave Cramer
2024-05-19Fixed typos in all source code and documentations (#11)Hunaid Sohail
2023-09-16Prep Relese 16.00.0000.REL-16_00_0000SAITO Hiroshi
2023-06-23Prep release 15.00.0000.REL-15_00_0000SAITO Hiroshi
2021-09-22Prep Release 13.02.0000.REL-13_02_0000Hiroshi Saito
2021-05-02Prep Ver 03.01.0000REL-13_01_0000Hiroshi Saito
2020-12-02fixed typo, per report Hayato Kuroda-san.Hiroshi Saito
2020-11-19Prep release 13.00.0000.REL-13_00_0000Hiroshi Saito
2020-05-26Prep release 12.02.0000.REL-12_02_0000Hiroshi Saito
2020-05-22Add a new option IgnoreTimeout.Hiroshi Inoue
Some tools issue issue SQLSetStmtAttr(.., SQL_ATTR_QUERY_TIMEOUT,,) internally and sometimes it's difficult for users to change the timeout value. You can disable the timeout by turning on this option.
2020-05-20Improve execution of parameterized SQL statements with arrays of parameters ↵Hiroshi Inoue
by sending chunks of SQL statements. If SQL_ATTR_CURSOR_TYPE of an statement is SQL_CURSOR_FORWARD_ONLY, SQL_ATTR_CONCURRENCY is SQL_CONCUR_READ_ONLY and extended protocol isn't used, the batch execution of the statement is possible. A new option Batch Size was introduced for such cases. Batch Size: Split an array (of parameters) into chunks of Batch Size to execute statements. The last chunk may contain less than Batch Size elements. Setting 1 to this option forces the current one by one execution. Also turn off use_server_side_prepare option temporarily when batch executuion is possible.
2020-03-02Add a new *Display Optional Error Message* option. This option allows toHiroshi Inoue
display error messages other than primary one. Also add documentaition about the option and *Numeric as* option.
2020-01-07Prep release 12.01.0000REL-12_01_0000Hiroshi Saito
2019-10-11Prep release 12.00.0000REL-12_00_0000Hiroshi Saito
2019-05-24Prep release 11.01.0000REL-11_01_0000Hiroshi Saito
2018-11-17Prep release 11.00.0000.REL-11_00_0000Hiroshi Saito
2018-11-07Documentation fix.Hiroshi Inoue
2018-05-19Prep release 10.03.0000REL-10_03_0000Hiroshi Saito
2018-03-30Fixed typo..Hiroshi Saito
2018-03-30Prep release 10.02.0000REL-10_02_0000Hiroshi Saito
2017-12-28Fixed typo release document.Hiroshi Saito
2017-12-27Prep release 10.01.0000Hiroshi Saito
2017-10-13Prep version 10.00.0000!REL-10_00_0000Hiroshi Saito
2017-09-05Prep release 09.06.0500REL-09_06_0500Hiroshi Saito
2017-07-27Prep release 09.06.0410REL-09_06_0410Hiroshi Saito
2017-07-18Ooop, fixed typo.REL-09_06_0400Hiroshi Saito
2017-07-18change unicode_support, and prep release 09.06.0400Hiroshi Saito
2017-07-05Documentation fix for the PROTOCOL=<value> option.Hiroshi Inoue
It's out of sync with the current driver behavior (since 09.05.0100). Patch by Jan Wieck.
2017-05-11Prep release 09.06.0310.REL-09_06_0310Hiroshi Saito
2017-05-07Prep release 09.06.0300.REL-09_06_0300Hiroshi Saito
2017-03-10Prep release 09.06.0200REL-09_06_0200Hiroshi Saito
2017-01-31Prep relese 09.06.0100.Hiroshi Saito
2017-01-28Add a new option 'pqopt' which specifies libpq connection parameters as a ↵Hiroshi Inoue
conninfo style string. The string must be enclosed with braces {} e.g. pqopt={sslcert=... sslkey=... sslrootcert=...} in the case of connection strings. Though host, port, dbname, user, password, sslmode, keepalives_idle or keepalive_interval parameters can be set using this option, they are ordinarily set by other options. When some settings for those parameters conflict with other ordinary options, connections are rejected.
2016-12-05Change the default for ExtraSysTablePrefixes to an empty string.Heikki Linnakangas
Discussion: https://www.postgresql.org/message-id/CAJLMyc%2BxbLCMUHns5_-_m95q0hHsm-P933BE-BaRP%2B2fSJDP6A@mail.gmail.com
2016-11-01Add an image of editConfiguration.Hiroshi Inoue
Fixed typos.
2016-10-31import winbuild document.Hiroshi Saito
It was necessary in web site.
2016-10-08Using Powershell and MSBuild is the recommended way.Hiroshi Inoue
2016-10-04Documentation update for MSBuild.Hiroshi Inoue
2016-07-30Prep release 09.05.0400.REL-09_05_0400Hiroshi Saito
2016-06-17Prep release 09.05.0300.Hiroshi Saito
2016-04-15Release 09.05.0210.REL-09_05_0210Hiroshi Saito
2016-04-09Prep release 09.05.0200.REL-09_05_0200Hiroshi Saito
2016-04-01LINKMT is not used in the build process. ADDL_INC should be ADD_INC. Just ↵Hiroshi Inoue
a typo. The CLEAN target doesn't delete .pdb files. [patch by Tsunakawa, Takayuki]
2016-01-08Prep Release 09.05.0100.Hiroshi Saito
release note by Heikki Linnakangas.
2015-01-29Don't do premature execution.Heikki Linnakangas
Use protocol v3 Parse instead, even in UseServerSidePrepare=0 mode. Remove the DisallowPremature config option.