diff options
Diffstat (limited to 'src/interfaces/odbc/info.c')
-rw-r--r-- | src/interfaces/odbc/info.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/odbc/info.c b/src/interfaces/odbc/info.c index cebc305da3e..f412d2423e9 100644 --- a/src/interfaces/odbc/info.c +++ b/src/interfaces/odbc/info.c @@ -337,7 +337,7 @@ RETCODE result; case SQL_MAX_ROW_SIZE: /* ODBC 2.0 */ len = 4; - value = BLCKSZ; + value = MAX_ROW_SIZE; break; case SQL_MAX_ROW_SIZE_INCLUDES_LONG: /* ODBC 2.0 */ @@ -422,7 +422,7 @@ RETCODE result; break; case SQL_OUTER_JOINS: /* ODBC 1.0 */ - p = "N"; + p = "Y"; break; case SQL_OWNER_TERM: /* ODBC 1.0 */ |