Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
25c047fe
Kaydet (Commit)
25c047fe
authored
Eki 19, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:defaultparams
Change-Id: I8e40cf9166aa65c81cb6b4ed17506ec5b9d725e3
üst
1707c47d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
predicateinput.cxx
connectivity/source/commontools/predicateinput.cxx
+4
-4
FResultSet.cxx
connectivity/source/drivers/file/FResultSet.cxx
+2
-2
sqliterator.cxx
connectivity/source/parse/sqliterator.cxx
+1
-1
No files found.
connectivity/source/commontools/predicateinput.cxx
Dosyayı görüntüle @
25c047fe
...
...
@@ -398,7 +398,7 @@ namespace dbtools
OSQLParseNode
*
pFuncSpecParent
=
pOdbcSpec
->
getParent
();
OSL_ENSURE
(
pFuncSpecParent
,
"OPredicateInputController::getPredicateValue: an ODBC func spec node without parent?"
);
if
(
pFuncSpecParent
)
pFuncSpecParent
->
parseNodeToStr
(
sReturn
,
m_xConnection
,
&
m_aParser
.
getContext
()
,
false
);
pFuncSpecParent
->
parseNodeToStr
(
sReturn
,
m_xConnection
,
&
m_aParser
.
getContext
());
}
else
{
...
...
@@ -406,7 +406,7 @@ namespace dbtools
if
(
SQL_NODE_STRING
==
pValueNode
->
getNodeType
()
)
sReturn
=
pValueNode
->
getTokenValue
();
else
pValueNode
->
parseNodeToStr
(
sReturn
,
m_xConnection
,
&
m_aParser
.
getContext
()
,
false
);
pValueNode
->
parseNodeToStr
(
sReturn
,
m_xConnection
,
&
m_aParser
.
getContext
());
}
}
else
...
...
@@ -427,12 +427,12 @@ namespace dbtools
sReturn
=
pValueNode
->
getTokenValue
();
else
pValueNode
->
parseNodeToStr
(
sReturn
,
m_xConnection
,
&
m_aParser
.
getContext
()
,
false
sReturn
,
m_xConnection
,
&
m_aParser
.
getContext
()
);
}
else
pValueNode
->
parseNodeToStr
(
sReturn
,
m_xConnection
,
&
m_aParser
.
getContext
()
,
false
sReturn
,
m_xConnection
,
&
m_aParser
.
getContext
()
);
}
else
...
...
connectivity/source/drivers/file/FResultSet.cxx
Dosyayı görüntüle @
25c047fe
...
...
@@ -1243,7 +1243,7 @@ bool OResultSet::OpenImpl()
bool
bOK
=
true
;
while
(
bOK
)
{
bOK
=
ExecuteRow
(
IResultSetHelper
::
NEXT
,
1
,
true
);
bOK
=
ExecuteRow
(
IResultSetHelper
::
NEXT
);
if
(
bOK
)
{
...
...
@@ -1379,7 +1379,7 @@ bool OResultSet::OpenImpl()
bool
bOK
=
true
;
while
(
bOK
)
{
bOK
=
ExecuteRow
(
IResultSetHelper
::
NEXT
,
1
,
true
);
bOK
=
ExecuteRow
(
IResultSetHelper
::
NEXT
);
if
(
bOK
)
{
...
...
connectivity/source/parse/sqliterator.cxx
Dosyayı görüntüle @
25c047fe
...
...
@@ -986,7 +986,7 @@ bool OSQLParseTreeIterator::traverseSelectColumnNames(const OSQLParseNode* pSele
SQL_ISRULE(pColumnRef,num_value_exp) || SQL_ISRULE(pColumnRef,term))*/
{
// Function call present
pColumnRef
->
parseNodeToStr
(
sColumnName
,
m_pImpl
->
m_xConnection
,
NULL
,
false
);
pColumnRef
->
parseNodeToStr
(
sColumnName
,
m_pImpl
->
m_xConnection
,
NULL
);
// check if the column is also a parameter
traverseSearchCondition
(
pColumnRef
);
// num_value_exp
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment