One thing that strikes me as odd is that MSDN on SQLDataSources documents the BufferLength2 parameter as
[Input] Length in characters of the *Description buffer.
The value passed to it is sizeof(description). This is all well, as long as sizeof(UCHAR) == sizeof(char), but I don't know if that is actually true, as I don't do much C. UCHAR could be unsigned char, but it could also be Unicode char. Personally, I would try to avoid the direct sizeof() and declare a constant (say) DESCRIPTION_SIZE= 256, and then use
const DESCRIPTION_SIZE= 256;
UCHAR description[ DESCRIPTION_SIZE ];
...
SQLDataSources(
...
description,
DESCRIPTION_SIZE,
...
);
... but I doubt that this is the problematic part, as it would imply an "overly long" description of over 256 bytes in one of the ODBC data sources.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|