Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 223385 | Differences between
and this patch

Collapse All | Expand All

(-)connectivity/source/drivers/odbc/OStatement.cxx.orig (-2 / +2 lines)
Lines 298-304 Link Here
298
	sal_Int32	numRows = 0;
298
	sal_Int32	numRows = 0;
299
299
300
	try {
300
	try {
301
		THROW_SQL(N3SQLRowCount(m_aStatementHandle,&numRows));
301
		THROW_SQL(N3SQLRowCount(m_aStatementHandle,(SQLINTEGER*)&numRows));
302
	}
302
	}
303
	catch (SQLException&)
303
	catch (SQLException&)
304
	{
304
	{
Lines 564-570 Link Here
564
		SQLRETURN nError = N3SQLMoreResults(m_aStatementHandle);
564
		SQLRETURN nError = N3SQLMoreResults(m_aStatementHandle);
565
		if(nError == SQL_SUCCESS)
565
		if(nError == SQL_SUCCESS)
566
		{
566
		{
567
			N3SQLRowCount(m_aStatementHandle,&pArray[j]);
567
			N3SQLRowCount(m_aStatementHandle,(SQLINTEGER*)&pArray[j]);
568
		}
568
		}
569
	}
569
	}
570
	return aRet;
570
	return aRet;

Return to bug 223385