From 76573294e5dbaf984796d23573df0c263ad8742c Mon Sep 17 00:00:00 2001 From: Aleksandar Fabijanic Date: Tue, 16 Dec 2014 19:24:33 -0600 Subject: [PATCH 1/2] Fix for #641 MySQL - LONGBLOB problem on 64-bit systems --- Data/MySQL/src/ResultMetadata.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Data/MySQL/src/ResultMetadata.cpp b/Data/MySQL/src/ResultMetadata.cpp index b61435303..a5b6b698a 100644 --- a/Data/MySQL/src/ResultMetadata.cpp +++ b/Data/MySQL/src/ResultMetadata.cpp @@ -172,8 +172,7 @@ void ResultMetadata::init(MYSQL_STMT* stmt) {for (std::size_t i = 0; i < count; i++) { std::size_t size = fieldSize(fields[i]); - std::size_t zero = 0; - if (size == ~zero) size = 0; + if (size == 0xFFFFFFFF) size = 0; _columns.push_back(MetaColumn( i, // position From b167c3ecee7bdf7ed3c742ee426a79fd47803a45 Mon Sep 17 00:00:00 2001 From: Aleksandar Fabijanic Date: Tue, 16 Dec 2014 19:54:50 -0600 Subject: [PATCH 2/2] Update 99100-ReleaseNotes.page --- doc/99100-ReleaseNotes.page | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/99100-ReleaseNotes.page b/doc/99100-ReleaseNotes.page index 725aad0ad..c9fffc800 100644 --- a/doc/99100-ReleaseNotes.page +++ b/doc/99100-ReleaseNotes.page @@ -65,6 +65,8 @@ AAAIntroduction - Compiling POCO on Windows without #define POCO_WIN32_UTF8 is deprecated and will lead to diagnostic messages while compiling. + - Support (project and solution files) for MS Visual Studio 2003 and 2005 has been + removed; the oldest officially supported VS version is 2008 (MSVC version 9.0). !!!Release 1.5.4