in reply to Re: dbix::simple & varbinary(MAX)
in thread dbix::simple & varbinary(MAX)
I don't know where you got that 1.16 distribution from because the diff does not make sense against 1.16 code at that point which already contains:
case SQL_VARBINARY: case SQL_BINARY: fbh->ftype = SQL_C_BINARY; break; #if defined(WITH_UNICODE) case SQL_WCHAR: case SQL_WVARCHAR: fbh->ftype = SQL_C_WCHAR; /* MS SQL returns bytes, Oracle returns characters ... */ fbh->ColDisplaySize*=sizeof(WCHAR); fbh->ColLength*=sizeof(WCHAR); break; #endif /* WITH_UNICODE */
However, the salient point of it is setting ColDisplaySize.
The reason why it is not in DBD::ODBC is no one has told the current maintainer about it - namely me - I just came across this thread. This will be included in 1.17.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: dbix::simple & varbinary(MAX)
by Anonymous Monk on Aug 27, 2008 at 02:30 UTC | |
by mje (Curate) on Sep 12, 2008 at 14:20 UTC |