My favorites | Sign in
Project Home Downloads Wiki
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions

Issue 86 attachment: diff.txt (448 bytes)

1
2
3
4
5
6
7
8
9
10
11
12
13
504c504
< SQLUSMALLINT infotype;
---
> long infotype;
516c516
< return RaiseErrorV(0, ProgrammingError, "Invalid getinfo value: %d", infotype);
---
> return RaiseErrorV(0, ProgrammingError, "Invalid getinfo value: %ld", infotype);
523c523,524
< ret = SQLGetInfo(cnxn->hdbc, infotype, szBuffer, sizeof(szBuffer), &cch);
---
>
> ret = SQLGetInfo(cnxn->hdbc, (SQLUSMALLINT)infotype, szBuffer, sizeof(szBuffer), &cch);
Powered by Google Project Hosting