String::AppendAscii cleanup in dbaccess

Change-Id: I6a6d695c9e4b850bc19a3a80c2d8343147724df6
Reviewed-on: https://gerrit.libreoffice.org/3068
Reviewed-by: Thomas Arnhold <thomas@arnhold.org>
Tested-by: Thomas Arnhold <thomas@arnhold.org>
This commit is contained in:
Ricardo Montania
2013-03-26 17:29:01 -03:00
committed by Thomas Arnhold
parent 50c0ce4b82
commit 7ee37c3ac6
5 changed files with 30 additions and 30 deletions

View File

@@ -395,35 +395,35 @@ namespace
const OQueryTableConnectionData* pData)
{
String aErg(rLh);
OUString aErg(rLh);
if ( pData->isNatural() && pData->GetJoinType() != CROSS_JOIN )
aErg.AppendAscii(" NATURAL ");
aErg += " NATURAL ";
switch(pData->GetJoinType())
{
case LEFT_JOIN:
aErg.AppendAscii(" LEFT OUTER ");
aErg += " LEFT OUTER ";
break;
case RIGHT_JOIN:
aErg.AppendAscii(" RIGHT OUTER ");
aErg += " RIGHT OUTER ";
break;
case CROSS_JOIN:
OSL_ENSURE(!pData->isNatural(),"OQueryDesignView::BuildJoin: This should not happen!");
aErg.AppendAscii(" CROSS ");
aErg += " CROSS ";
break;
case INNER_JOIN:
OSL_ENSURE(pData->isNatural(),"OQueryDesignView::BuildJoin: This should not happen!");
aErg.AppendAscii(" INNER ");
aErg += " INNER ";
break;
default:
aErg.AppendAscii(" FULL OUTER ");
aErg += " FULL OUTER ";
break;
}
aErg.AppendAscii("JOIN ");
aErg += String(rRh);
aErg += "JOIN ";
aErg += rRh;
if ( CROSS_JOIN != pData->GetJoinType() && !pData->isNatural() )
{
aErg.AppendAscii(" ON ");
aErg += String(BuildJoinCriteria(_xConnection,pData->GetConnLineDataList(),pData));
aErg += " ON ";
aErg += BuildJoinCriteria(_xConnection,pData->GetConnLineDataList(),pData);
}
return aErg;