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
84e3c5ac
Kaydet (Commit)
84e3c5ac
authored
Ara 30, 2014
tarafından
Julien Nabet
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Related fdo#87789: groups should appear like views and not like tables
Change-Id: I4f8d7e2bec006e6d0a0041e2145aa0920f64aa57
üst
ff2990fd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
MDatabaseMetaDataHelper.cxx
connectivity/source/drivers/mork/MDatabaseMetaDataHelper.cxx
+9
-2
No files found.
connectivity/source/drivers/mork/MDatabaseMetaDataHelper.cxx
Dosyayı görüntüle @
84e3c5ac
...
...
@@ -106,8 +106,15 @@ bool MDatabaseMetaDataHelper::getTables( OConnection* _pCon,
SAL_INFO
(
"connectivity.mork"
,
"TableName: "
<<
aTableName
);
aRow
.
push_back
(
new
ORowSetValueDecorator
(
aTableName
)
);
// Table name
aRow
.
push_back
(
new
ORowSetValueDecorator
(
OUString
(
"TABLE"
)
)
);
// Table type
aRow
.
push_back
(
new
ORowSetValueDecorator
(
aTableName
)
);
// Table/View name
if
((
aTableName
==
"AddressBook"
)
||
(
aTableName
==
"CollectedAddressBook"
))
{
aRow
.
push_back
(
new
ORowSetValueDecorator
(
OUString
(
"TABLE"
)
)
);
// Table type
}
else
{
aRow
.
push_back
(
new
ORowSetValueDecorator
(
OUString
(
"VIEW"
)
)
);
// View type
}
aRow
.
push_back
(
ODatabaseMetaDataResultSet
::
getEmptyValue
()
);
// Remarks
aRows
.
push_back
(
aRow
);
}
...
...
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