WaE vs2015: casting from int32 to pointer to to odbc idiosyncracies

Change-Id: I94f2435aee76b03d4b14b009fdeca06a14f22909
Reviewed-on: https://gerrit.libreoffice.org/22599
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
This commit is contained in:
Norbert Thiebaud
2016-02-21 08:20:33 -08:00
parent 369b33903a
commit 1e82ae8811

View File

@@ -253,7 +253,9 @@ void OTools::bindValue( OConnection* _pConnection,
} break;
case SQL_LONGVARBINARY:
{
_pData = reinterpret_cast<void*>(columnIndex);
/* see https://msdn.microsoft.com/en-us/library/ms716238%28v=vs.85%29.aspx
* for an explanation of that apparently weird cast */
_pData = reinterpret_cast<void*>((uintptr_t)columnIndex);
sal_Int32 nLen = 0;
nLen = static_cast<const ::com::sun::star::uno::Sequence< sal_Int8 > *>(_pValue)->getLength();
*pLen = (SQLLEN)SQL_LEN_DATA_AT_EXEC(nLen);
@@ -261,7 +263,9 @@ void OTools::bindValue( OConnection* _pConnection,
break;
case SQL_LONGVARCHAR:
{
_pData = reinterpret_cast<void*>(columnIndex);
/* see https://msdn.microsoft.com/en-us/library/ms716238%28v=vs.85%29.aspx
* for an explanation of that apparently weird cast */
_pData = reinterpret_cast<void*>((uintptr_t)columnIndex);
sal_Int32 nLen = 0;
nLen = static_cast<OUString const *>(_pValue)->getLength();
*pLen = (SQLLEN)SQL_LEN_DATA_AT_EXEC(nLen);