Hi,
I have used SQLColumns for previous versions of MySQL like for example 3.23.56.
However when I upgraded to 4.0.12 the SQLColumns does not work as before.
I can receive a complete table with all columns, but I can no longer get a
single column name.
Works:
SQLColumns(hstmt, NULL, 0, NULL, 0, (uchar*)"person", SQL_NTS, NULL, 0);
No longer works:
SQLColumns(hstmt, NULL, 0, NULL, 0, (uchar*)"person", SQL_NTS, (uchar*)"id",
SQL_NTS);
The result I get is an empty result set (NO_DATA)
Im using Windows XP, MyODBC v3.51, C++
Regards,