Skip to content

Commit 8dbb2a3

Browse files
author
лаврин
committed
Fix of Bug#60307 + change log entries.
+ added to .bzrignore vs10 project files name templates
1 parent 8ead1c0 commit 8dbb2a3

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

.bzrignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*.la
33
*.spec
44
*.vcproj
5+
*.vcxproj
6+
*.vcxproj.*
57
*.sln
68
*.ncb
79
*.suo

CHANGES

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2323
*/
2424

25-
GA 1.1.1 - 2010-xx-xx
25+
GA 1.1.1 - 2012-0x-xx
2626

2727
- DatabaseMetaData::getSQLKeywords() updated to match MySQL 5.5. Note
2828
that C/C++, just like C/JDBC, returns the same list for every
@@ -33,6 +33,17 @@ GA 1.1.1 - 2010-xx-xx
3333

3434
- Added new method ResultSetMetaData::isNumeric() and implemented it in
3535
all classes that subclass from it. (Andrey)
36+
37+
- Fixed the bug causing compilation errors in Microsoft Visual Studio 2010 if
38+
stdint.h was included. See http://bugs.mysql.com/bug.php?id=60307
39+
40+
- Fixed bug making statement that did not raise any warning to return
41+
warnings from previously executed statement.
42+
43+
- Fixed stores(Lower|Mixed)Case(Quoted)Identifiers methods.
44+
45+
- Built against libmysql 5.5.24 enabling support of authentification plugins
46+
and IPv6.
3647

3748
GA 1.1.0 - 2010-09-13
3849

cppconn/config.h.cm

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,12 @@
6969
#if defined(_WIN32)
7070
#ifndef CPPCONN_DONT_TYPEDEF_MS_TYPES_TO_C99_TYPES
7171

72+
#if _MSC_VER >= 1600
73+
74+
#include <stdint.h>
75+
76+
#else
77+
7278
#if !defined(HAVE_INT8_T) && defined(HAVE_MS_INT8)
7379
typedef __int8 int8_t;
7480
#endif
@@ -99,5 +105,6 @@ typedef __int64 int64_t;
99105
typedef unsigned __int64 uint64_t;
100106
#endif
101107

108+
#endif // _MSC_VER >= 1600
102109
#endif // CPPCONN_DONT_TYPEDEF_MS_TYPES_TO_C99_TYPES
103110
#endif // _WIN32

0 commit comments

Comments
 (0)