Hiroshi Inoue [Wed, 11 Dec 2013 11:50:02 +0000 (20:50 +0900)]
Call getaddrinfo() with AI_NUMERICSERV because the service is a port number.
Pavel Raiskup [Thu, 5 Dec 2013 12:58:30 +0000 (13:58 +0100)]
socket: speedup also ipv6 connection
[Patch by Pavel Raiskup]
Call getaddrinfo() with AI_NUMERICHOST if it is ipv4/ipv6 address.
For that reason the inet_pton() is better than inet_addr().
Heikki Linnakangas [Tue, 10 Dec 2013 09:16:16 +0000 (11:16 +0200)]
Fix memset() call, meant to clear the whole struct.
Per compiler warning.
Hiroshi Inoue [Fri, 22 Nov 2013 07:15:56 +0000 (16:15 +0900)]
Make it possible to invoke several scripts from any working directory.
Hiroshi Inoue [Thu, 21 Nov 2013 05:19:17 +0000 (14:19 +0900)]
Stop dot-sourcing a script to avoid confusion of scope of variables. Also make it possible to specify the configuration file path as a parameter.
Hiroshi Inoue [Thu, 21 Nov 2013 00:08:47 +0000 (09:08 +0900)]
Add formatVersion attribute to configuration.xml so as to detect the format change. Unify configuration_template.xml to configuration.xml when the format change is detected.
Hiroshi Inoue [Thu, 21 Nov 2013 07:55:50 +0000 (16:55 +0900)]
Remove CRs from editConfiguration.ps1.
Hiroshi Inoue [Mon, 18 Nov 2013 12:55:18 +0000 (21:55 +0900)]
bufferoverflowu.lib seems no longer needed in recent versions of VC environment.
So removed it from win64.mak. Speocify CUSTOMLINKLIBS=bufferoverflowu.lib from the command line when it is neccessary in old VC environment.
Hiroshi Inoue [Sun, 17 Nov 2013 03:34:40 +0000 (12:34 +0900)]
Add build_macros element to winbuild/configuration(_template).xml so that buildXxx.ps1 can specify macros to the makefiles. Also make some part of CL options of makefiles replacable.
Hiroshi Inoue [Fri, 15 Nov 2013 02:47:33 +0000 (11:47 +0900)]
Move -Wall -Wno-pointer-sign CFLAGS option specified in Makefile.am to configure.ac. Users can disable those options by giving CFLAGS option explicitly. Also verify the availability of those options.
Hiroshi Inoue [Thu, 14 Nov 2013 01:58:01 +0000 (10:58 +0900)]
Stop linking lib(i)odbc library because the library is unnecessary and rather harmful. Per report from Pavel Raiskup(postgresql.org/message-id/
1769926.65KUyECjFr@nb.usersys.redhat.com).
Heikki Linnakangas [Tue, 12 Nov 2013 23:23:57 +0000 (01:23 +0200)]
Use snprintf() instead of sprintf() for safety.
I believe these instances were in fact safe, because a cursor name has
a maximum length, but better safe than sorry.
Heikki Linnakangas [Tue, 12 Nov 2013 22:59:01 +0000 (00:59 +0200)]
Add regression test for SQLTables() function.
Heikki Linnakangas [Tue, 12 Nov 2013 22:56:15 +0000 (00:56 +0200)]
Fix buffer overflow in handling of SQLTables params.
Found by Fortify static analysis tool.
Heikki Linnakangas [Tue, 12 Nov 2013 22:15:38 +0000 (00:15 +0200)]
Replace calls to my_strcat and my_strcat with snprintf_add.
my_strcat didn't check for buffer overflow, which Fortify static analysis
tool flagged as an issue. I'm not sure if that can actually happen, but
the code is clearer like this anyway.
Heikki Linnakangas [Tue, 12 Nov 2013 21:57:29 +0000 (23:57 +0200)]
Check return value of stdup() for out-of-memory.
There are a lot of little bugs like this throughout the code, but it's
start...
Flagged by Fortify static analysis tool.
Heikki Linnakangas [Tue, 12 Nov 2013 21:53:04 +0000 (23:53 +0200)]
Fix buffer overflow in interval parsing.
Includes a test case.
Flagged by Fortify static analysis tool.
Heikki Linnakangas [Tue, 12 Nov 2013 20:35:56 +0000 (22:35 +0200)]
Construct ctid string correctly for block no > 2^31.
Block number is unsigned. Other places where we construct ctid strings we
got this right, but not this one. I'm not sure how to trigger this codepath,
but I'm sure something funny would happen if you tried to use these functions
on large enough tables (> 16 TB).
Heikki Linnakangas [Tue, 12 Nov 2013 20:21:51 +0000 (22:21 +0200)]
Escape double-quotes in table name correctly.
When constructing the select/update/delete for current row in a rowset,
and the schema or table name contained double-quotes, they were not correctly
escaped in the constructed SQL statement. That lead to errors when doing
positioned updates.
Also, use snprintf and snprintf_add instead of sprintf and strcat in more
places. Makes these things look less like buffer overflows to static analysis
tools, and make for more readable code anyway.
Heikki Linnakangas [Tue, 12 Nov 2013 18:19:06 +0000 (20:19 +0200)]
Add test case for positioned updates (SQLSetPos).
Heikki Linnakangas [Tue, 12 Nov 2013 13:49:50 +0000 (15:49 +0200)]
Avoid double-free() bug.
Spotted by Fortify static analysis tool.
Hiroshi Inoue [Sat, 9 Nov 2013 03:58:23 +0000 (12:58 +0900)]
Improve the help message of configure script.
Hiroshi Inoue [Fri, 8 Nov 2013 12:47:57 +0000 (21:47 +0900)]
Suppress compiler warnings.
Hiroshi Inoue [Wed, 6 Nov 2013 13:21:40 +0000 (22:21 +0900)]
Use with_xxxxx (xxxxx is the package name) variables directly instead of the withval variable.
Hiroshi Inoue [Wed, 6 Nov 2013 12:27:29 +0000 (21:27 +0900)]
winres.h instead of afxres.h. There are some cases (VS 2012 express etc) when afxres.h doesn't exist.
Hiroshi Inoue [Mon, 4 Nov 2013 13:08:03 +0000 (22:08 +0900)]
Rename the name of elements in configuration(_template).xml from
setenv to setvcvars.
Hiroshi Inoue [Mon, 4 Nov 2013 12:58:10 +0000 (21:58 +0900)]
When nmake macros are given as command line parameters, they can't be changed.
Heikki Linnakangas [Sun, 3 Nov 2013 08:31:44 +0000 (10:31 +0200)]
VOID is not defined on all systems. Use void insted.
Christoph Berg
Hiroshi Inoue [Thu, 31 Oct 2013 12:46:15 +0000 (21:46 +0900)]
Change conifuration_template.xml so that its 64bit default is use_sspi=yes,
use_gss=no. Also add the treatment of libpq default version.
Hiroshi Inoue [Sat, 26 Oct 2013 11:45:39 +0000 (20:45 +0900)]
Add support for verify-ca/full sslmode using Windows Schannel Security
Service Provider.
Root CAs must be installed into Windows Root certificate store beforehand.
Heikki Linnakangas [Mon, 28 Oct 2013 10:48:35 +0000 (12:48 +0200)]
Fix the newly-introduced CORR_STRCPY and CORR_VALCPY macros.
They were broken, did not compile.
Michael Paquier
Hiroshi Inoue [Fri, 25 Oct 2013 05:35:52 +0000 (14:35 +0900)]
Fix a bug in CC_copy_conninfo() that free()s password item of input source
unexpectedly.
Change CC_copy_conninfo() and copy_globals() so that they copy each item
one by one.
Hiroshi Inoue [Thu, 24 Oct 2013 08:49:58 +0000 (17:49 +0900)]
OK I found the way to handle private keys of PEM form using CryptoAPI.
Certificates of PFX form are no longer needed for SSL client certificate
authntication.
Hiroshi Inoue [Tue, 22 Oct 2013 13:40:57 +0000 (22:40 +0900)]
Concentrate the settings of Windows build system to an xml file and
build binaries or installers with reference to it.
(configuration.xml)
xml file to specify the setting of the build environment.
It is automatically generated in winbuild folder as a copy
of winbuild/configuration_template.xml when you invoke
editConfiguration script firstly.
winbuild/configuration.ps1 modules to handle the configuration file
winbuild/editConfiguration.ps1 edit configuration file (GUI)
winbuild/editConfiguration.bat same as above with a minimized console window
buildx86.ps1 build 32bit binary
buildx64.ps1 build 64bit binary
installer/buildx86-installer.ps1 build 32bit installer
installer/buildx64-installer.ps1 build 64bit installer
Hiroshi Inoue [Tue, 22 Oct 2013 13:21:56 +0000 (22:21 +0900)]
Change Windows installer build system for the next release.
Change to specify ProductCode for each version so as not to forget to change
ProductCode in case of major version up.
Remove VC runtime merge modules from the installer(runtime dlls will be
installed via psqlodbc setup program).
[64bit version only]
Use libpq by default
Remove GSSAPI support by default
Hiroshi Inoue [Tue, 22 Oct 2013 08:51:50 +0000 (17:51 +0900)]
Handle SSL client certificate authentication in Windows Schannel security
support provider.
You have to place the certificate file postgresql.pfx (PFX or PKCS12 format)
in %APPDATA%\postgresql folder instead of postgresql.crt and postgresql.key
(I wasn't able to find the way to handle PEM format using Cryptography API
unfortunately).
You can create the file using the following command.
openssl pkcs12 -export -in postgresql.crt -inkey postgresql.key
-out postgresql.pfx (with empty password).
Hiroshi Inoue [Thu, 22 Aug 2013 11:40:01 +0000 (20:40 +0900)]
When LF->CR+LF conversion causes an buffer truncation, supress the conversion (in case of unicode).
Heikki Linnakangas [Mon, 2 Sep 2013 10:20:02 +0000 (13:20 +0300)]
Don't issue a BEGIN when running VACUUM in auto-commit mode.
Normally in auto-commit mode the driver begins a new transaction
implicitly at the first statement, by sending a BEGIN statement. However,
some commands, like VACUUM, cannot be run in a transaction block, and you
will get an error like "VACUUM cannot run inside a transaction block" from
the server. In UseServerSidePrepare=0 mode, the code looks at the first word
of the query to determine if the statement is one of the special ones, and
if so, didn't begin a new transaction even when auto-commit mode is
disabled. However, in UseServerSidePrepare=1 mode, when using SQLPrepare/
SQLExecute to run the VACUUM, that check was not made. Fix that.
There was one more related inconsistency between UseServerSidePrepare modes.
Without server-side-prepares, if you issued an explicit BEGIN in auto-commit
mode, the implicit BEGIN was ont sent. But without server-side prepares, it
was. It seems best to send the implicit BEGIN in both cases, because then
you get a warning from the backend about the second BEGIN. That's a good
thing, because a sane ODBC application should be using the ODBC function
SQLEndTran() for transaction control, not explicit BEGIN/COMMIT.
Also add a test case for executing VACUUM, with and without autocommit.
Heikki Linnakangas [Mon, 2 Sep 2013 08:29:46 +0000 (11:29 +0300)]
Add test case for interleaving operations on several prepared statements.
Heikki Linnakangas [Mon, 2 Sep 2013 08:29:41 +0000 (11:29 +0300)]
Add test case for SQLDescribeParam
Heikki Linnakangas [Mon, 2 Sep 2013 08:29:28 +0000 (11:29 +0300)]
Remove useless 'sync' parameter from prepareParameters() function.
It was always passed as TRUE.
Heikki Linnakangas [Thu, 22 Aug 2013 07:11:16 +0000 (10:11 +0300)]
Add preliminary release notes for upcoming 9.3 release.
This doesn't cover everything yet, but it's a start.
Heikki Linnakangas [Thu, 22 Aug 2013 06:58:02 +0000 (09:58 +0300)]
Change the default for UseServerSidePrepare to 1.
The docs have recommended UseServerSidePrepare=1 for server versions 7.4
onwards, so it seems prudent to change the default so that people don't need
to remember to specify it manually.
With UseServerSidePrepare=1, the "insertreturning" regression test case
behaves better, ie. SQLNumResultCols() correctly returns the number of
columns for an INSERT RETURNING statement, even when called before
SQLExecute(). Hence change the expected output. I'm not 100% if the behavior
with UseServerSidePrepare=0 was even correct, so I'm not adding an
alternative expected output file for it.
Heikki Linnakangas [Thu, 22 Aug 2013 06:47:07 +0000 (09:47 +0300)]
Fix bug when a statement is executed twice with data-at-execution params.
When a statement with array-bound data-at-execution parameters is executed
twice, the second result set was not returned when UseServerSidePrepare=1.
This was demonstrated by the data-at-execution regression test case.
Heikki Linnakangas [Wed, 21 Aug 2013 12:37:33 +0000 (15:37 +0300)]
Add test case for testing the effect of COMMIT/ROLLBACK on cursors.
The behavior differs depending on UseDeclareFetch, so there are two expected
outputs for this.
Heikki Linnakangas [Tue, 20 Aug 2013 21:11:30 +0000 (00:11 +0300)]
Add test case for multi-statements.
Heikki Linnakangas [Tue, 20 Aug 2013 21:00:13 +0000 (00:00 +0300)]
Remove common.o on "make clean"
Heikki Linnakangas [Tue, 20 Aug 2013 20:26:30 +0000 (23:26 +0300)]
Handle turning standard_conforming_strings to off in mid-session.
We already watched for a ParameterStatus response indicating that
standard_conforming_strings was turned on, and acted accordingly, but
if it was turned off, we did nothing. Fix that.
Also add a test case for that.
Heikki Linnakangas [Tue, 20 Aug 2013 19:41:53 +0000 (22:41 +0300)]
Add test case for using SQLBindParameter with SQLExecDirect.
Heikki Linnakangas [Tue, 20 Aug 2013 10:44:53 +0000 (13:44 +0300)]
Remove some dead code.
Heikki Linnakangas [Tue, 20 Aug 2013 04:46:31 +0000 (07:46 +0300)]
Oops, used wrong #ifdef for CC_Copy.
CC_Copy is needed if _HANDLE_ENLIST_IN_DTC_ is used, regardless of
CLEANUP_CONN_BEFORE_ISOLATION. That caused compilation on Windows to fail.
Heikki Linnakangas [Thu, 15 Aug 2013 10:12:15 +0000 (13:12 +0300)]
Silence misc compiler warnings.
Also a few comment typo and whitespace fixes.
Hiroshi Inoue [Wed, 24 Jul 2013 15:07:58 +0000 (00:07 +0900)]
Configure is checking SIZEOF_LONG not SIZEOF_LONG_INT.
Hiroshi Inoue [Sun, 14 Jul 2013 11:51:17 +0000 (20:51 +0900)]
The first cut of psqlodbc setup project. It builds a setup program which
can't be done by a single MSI. It would install VC++ redistributable, 32
bit psqlodbc driver and 64 bit psqlodbc driver (on 64 bit windows).
Hiroshi Inoue [Sat, 13 Jul 2013 09:29:50 +0000 (18:29 +0900)]
Change configure.ac so that ODBC_CONFIG is set when neither unixODBC nor
iODBC is explicitly specified.
Hiroshi Inoue [Wed, 10 Jul 2013 14:32:24 +0000 (23:32 +0900)]
Ignore automatically-generated files in source code with .gitignore.
This is useful to prevent accidental commit of files that are not wanted
in the remote repository. The original patch was provided by Michael
Paquier. I also added files genearated by VC build tools or WIX tools
to .gitignore.
Hiroshi Inoue [Fri, 21 Jun 2013 04:09:06 +0000 (13:09 +0900)]
Revise MSDTC support.
1. Remove pointlessly complicated AsyncThreads stuff. Instead use
_beginthread() to clean up threads.
2. Make pgenlist.dll from the structure change of ConnectionClass.
The driver dlls exports the functions described in connexp.h
which are used by pgenlist.dll.
3. Isolate the current communication path if necessary.
While an IAsyncPG object is alive, a ConnectionClass object (hereinafter
refered to as conn-obj) is assigned to it. The assignment has to be
changed in the following cases.
a) SQLDisconnect() is called for the current connection handle which
is assigned to an IAsyncPG object.
Allocate another conn-obj and move the current communication
path (*sock* member of the current conn-obj) to the new conn-obj.
The communicaation path is lost from the current conn-obj and
the new conn-obj is assigned to the IAsyncPG object.
b) Another (global) transaction is about to begin but the current
global transaction is not PREPARED yet.
Same as case a) but will open a new communication path for
the current conn-obj for the subsequent ODBC API calls.
c) Another (global) transaction is about to begin and the current
global transaction is already PREPARED.
Allocate another conn-obj and open a new communication path for
the conn-obj. The new conn-obj is assigned to the IAsyncPG
object only to issue COMMIT/ROLLBACK PREPARED command.
communication pass (*sock* member of the current ConnectionClass
object) to the new object and change the state of the current
object NOT CONNECTED. The IAsyncPG object uses new object instead
of the current object. In case b) the current object will open a
new communication path.
Hiroshi Inoue [Fri, 21 Jun 2013 03:45:40 +0000 (12:45 +0900)]
Reduce the memory usage of ConnectinClass objects by changing their large
fixed length text fields to variable ones. Because changes are applied to
percent-encoded fields this time, password field is also a target of this
change.
Hiroshi Inoue [Mon, 17 Jun 2013 21:51:24 +0000 (06:51 +0900)]
Change SQL_ATTR_PARAMS_PROCESSED_PTR attribute which is set by SQLSetStmtAttr() from (SQLUINTEGER *) to (SQLULEN *). This fixes the bug reported by Christopf Berg. Also verify similar attributes which were changed from SQL(U)INTEGER (*) to SQL(U)LEN (*) when 64bit ODBC was introduced.
Hiroshi Inoue [Fri, 14 Jun 2013 22:09:51 +0000 (07:09 +0900)]
SQL_C_SLONG stands for SQLINTEGER not long.
Heikki Linnakangas [Wed, 12 Jun 2013 11:03:37 +0000 (14:03 +0300)]
Fix uninitialized use of 'allocbuf' variable, in case of out-of-memory.
Compiler warned about this. If ENLARGE_NEWSTATEMENT macro ran out of memory,
it would jump to cleanup routine. The cleanup would check if allocbuf is
NULL, and try to free() it if not. allocbuf needs to be initialized to NULL
before the first ENLARGE_NEWSTATEMENT macro invocation.
Hiroshi Saito [Sun, 2 Jun 2013 13:05:53 +0000 (22:05 +0900)]
Change release date.
Hiroshi Saito [Sun, 2 Jun 2013 13:04:42 +0000 (22:04 +0900)]
add change history.
Hiroshi Inoue [Sun, 2 Jun 2013 01:29:35 +0000 (10:29 +0900)]
Make sure accesses to a connection from multiple threads are exclusive. This change fixes the problem *UseDeclareFetch=1, Fetch=100, UseServerSidePrepare=1 causes Windows client to intermittently hang* reported by Jack Wilson. I hope it would also fix the problem *Segmentation Fault in Postgres server when using psqlODBC* reported by Joshua Berry.
Hiroshi Saito [Tue, 28 May 2013 16:14:57 +0000 (01:14 +0900)]
include VS2010 Merge Modules.
Hiroshi Saito [Sun, 26 May 2013 09:10:33 +0000 (18:10 +0900)]
VS2010 module support at postgresql 9.2. per report jack(ljwilson).
Hiroshi Saito [Sun, 26 May 2013 06:24:27 +0000 (15:24 +0900)]
add test modules.
Hiroshi Saito [Sun, 26 May 2013 06:15:16 +0000 (15:15 +0900)]
add change history.
Hiroshi Inoue [Sat, 25 May 2013 21:33:37 +0000 (06:33 +0900)]
Fix the *cursor XXXXXXXX already exists* error when handling *with cte* statements reported by Joe Conway.
Hiroshi Saito [Tue, 21 May 2013 14:01:35 +0000 (23:01 +0900)]
Optimal some modification.
Hiroshi Inoue [Tue, 21 May 2013 12:28:10 +0000 (21:28 +0900)]
Apply blank date <-> null conversion functionality to timestamp type as well.
Hiroshi Inoue [Tue, 21 May 2013 12:24:12 +0000 (21:24 +0900)]
Avoid a conflict between winsock2.h and winsock.h? in socket.c.
Hiroshi Inoue [Mon, 20 May 2013 12:31:58 +0000 (21:31 +0900)]
Allow special characters in the password value of a connection string
by enclosing the value by braces({}).
Hiroshi Inoue [Mon, 20 May 2013 11:23:13 +0000 (20:23 +0900)]
Don't #include errno.h on Windows. VC10 or later intentionally changed
the values of error numbers like EINTR, EWOULDBLOCK.
Hiroshi Saito [Sun, 19 May 2013 09:34:37 +0000 (18:34 +0900)]
change lib name by 9.2.
Hiroshi Saito [Sun, 19 May 2013 09:30:44 +0000 (18:30 +0900)]
change lib name by 9.2.
Hiroshi Saito [Sat, 18 May 2013 15:06:06 +0000 (00:06 +0900)]
Prep release version 09.02.0100
Hiroshi Saito [Thu, 16 May 2013 00:07:27 +0000 (09:07 +0900)]
add the change history.
Hiroshi Inoue [Tue, 14 May 2013 13:55:36 +0000 (22:55 +0900)]
Merge branch 'snapshot'
Hiroshi Inoue [Tue, 14 May 2013 13:53:47 +0000 (22:53 +0900)]
Fix a problem reported by Jack Wilson(ljwilson@digitalav.com).
When DeUseDeclareFetch=1 and UseServerSidePrepare=1, issue COMMIT commands properly in case of AUTOCOMMIT on mode,
Hiroshi Saito [Mon, 13 May 2013 14:22:34 +0000 (23:22 +0900)]
commit check
Saito Hiroshi [Mon, 13 May 2013 13:55:50 +0000 (22:55 +0900)]
Add history prep release.
Hiroshi Inoue [Fri, 10 May 2013 22:07:24 +0000 (07:07 +0900)]
Make the MSI build process of 32bit drivers available in 64bit mode also.
Hiroshi Inoue [Thu, 2 May 2013 11:43:36 +0000 (20:43 +0900)]
Avoid a gpf on Windows reported by Jack Wilson(ljwilson@digitalav.com).
It occurs only when DeUseDeclareFetch=1 and UseServerSidePrepare=Parse=DisallowPremature=0. This change corrects the behavior of automatcally closed non-holdable cursors.
Heikki Linnakangas [Wed, 24 Apr 2013 15:35:54 +0000 (18:35 +0300)]
Fix bug with VARCHAR(5) parameter and UseServerSidePrepare=0
If you passed a VARCHAR parameter with column_size 5 to SQLPrepare, and you
had UseServerSideprepare=0 and BoolsAsChar=1, the code describes the
parameters before running the query, so that it can check if the parameter
is a boolean. That produced a bogus extra empty result set to the caller in
subsequent SQLExecute().
This fixes the two regression test failures.
Patch by Hiroshi Inoue, with minor copy-editing by me.
Heikki Linnakangas [Wed, 24 Apr 2013 15:05:29 +0000 (18:05 +0300)]
Add regression test suite.
Two tests are currently failing, because they hit a real bug in the driver.
After the bug is fixed, the tests should pass.
This doesn't work on Windows yet.
Heikki Linnakangas [Wed, 24 Apr 2013 15:03:58 +0000 (18:03 +0300)]
Teach installer that the FAQs and HOWTOs are not in this repository anymore.
Heikki Linnakangas [Wed, 24 Apr 2013 06:06:18 +0000 (09:06 +0300)]
Silence some compiler warnings, when building on Windows.
Heikki Linnakangas [Tue, 23 Apr 2013 16:10:24 +0000 (19:10 +0300)]
Add items to release notes, for things I've fixed recently.
Heikki Linnakangas [Tue, 23 Apr 2013 15:54:57 +0000 (18:54 +0300)]
Improve formatting of release notes.
Heikki Linnakangas [Tue, 23 Apr 2013 15:41:46 +0000 (18:41 +0300)]
Move release notes for 7.3 and below to separate files.
That's ancient history by now, so seems reasonable to make it less
prominent.
Heikki Linnakangas [Tue, 23 Apr 2013 13:14:44 +0000 (16:14 +0300)]
Fix "make dist" target, now that some of the documentation files are gone.
Heikki Linnakangas [Tue, 23 Apr 2013 13:12:54 +0000 (16:12 +0300)]
Fix typo in docs.
Heikki Linnakangas [Tue, 23 Apr 2013 12:07:06 +0000 (15:07 +0300)]
Remove documentation files that were moved to the new psqlodbc-www repository.
The version-specific files are kept in this repository, so that they are
kept in sync with the code.
Hiroshi Inoue [Sat, 20 Apr 2013 11:32:51 +0000 (20:32 +0900)]
Improve the handing of installation errors.
Hiroshi Inoue [Sat, 20 Apr 2013 11:26:45 +0000 (20:26 +0900)]
Fix a DataSource registration crash bug on 64bit Windows.
Hiroshi Inoue [Thu, 28 Mar 2013 02:36:44 +0000 (11:36 +0900)]
Fix column size info of MACADDR, CIDR or INET type.
Hiroshi Inoue [Thu, 28 Mar 2013 02:30:12 +0000 (11:30 +0900)]
Fix SQLPrepare() -> SQLDescibeCol() -> SQLPrepare() without SQLExecute() case.
Hiroshi Inoue [Mon, 14 Jan 2013 05:36:51 +0000 (14:36 +0900)]
Add some NULL checks to avoid crash.
Hiroshi Inoue [Mon, 14 Jan 2013 05:29:54 +0000 (14:29 +0900)]
Fix the bug reported by Bernhard Goebel. When fetching a row "behind" the rowset by "fetch absolute" only the first ones of the result set can be fetched. "First ones" means: row 1 to row X are readable furthermore, where X is the value used with the FETCH parameter in SQLDriverConnect.