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
c7052fd4
Kaydet (Commit)
c7052fd4
authored
Agu 17, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#983649 Uncaught exception
Change-Id: I928e8dbeeac168a02c82f2fafe881dae38ae4e3c
üst
d2a3b21a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
copytablewizard.cxx
dbaccess/source/ui/uno/copytablewizard.cxx
+2
-2
XCopyTableWizard.idl
offapi/com/sun/star/sdb/application/XCopyTableWizard.idl
+3
-2
No files found.
dbaccess/source/ui/uno/copytablewizard.cxx
Dosyayı görüntüle @
c7052fd4
...
...
@@ -164,7 +164,7 @@ namespace dbaui
virtual
OUString
SAL_CALL
getDestinationTableName
()
throw
(
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setDestinationTableName
(
const
OUString
&
_destinationTableName
)
throw
(
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
Optional
<
OUString
>
SAL_CALL
getCreatePrimaryKey
()
throw
(
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setCreatePrimaryKey
(
const
Optional
<
OUString
>&
_newPrimaryKey
)
throw
(
IllegalArgumentException
,
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setCreatePrimaryKey
(
const
Optional
<
OUString
>&
_newPrimaryKey
)
throw
(
IllegalArgumentException
,
SQLException
,
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
getUseHeaderLineAsColumnNames
()
throw
(
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setUseHeaderLineAsColumnNames
(
sal_Bool
_bUseHeaderLineAsColumnNames
)
throw
(
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
addCopyTableListener
(
const
Reference
<
XCopyTableListener
>&
Listener
)
throw
(
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
...
...
@@ -492,7 +492,7 @@ Optional< OUString > SAL_CALL CopyTableWizard::getCreatePrimaryKey() throw (Runt
return
m_aPrimaryKeyName
;
}
void
SAL_CALL
CopyTableWizard
::
setCreatePrimaryKey
(
const
Optional
<
OUString
>&
_newPrimaryKey
)
throw
(
IllegalArgumentException
,
RuntimeException
,
std
::
exception
)
void
SAL_CALL
CopyTableWizard
::
setCreatePrimaryKey
(
const
Optional
<
OUString
>&
_newPrimaryKey
)
throw
(
IllegalArgumentException
,
SQLException
,
RuntimeException
,
std
::
exception
)
{
CopyTableAccessGuard
aGuard
(
*
this
);
...
...
offapi/com/sun/star/sdb/application/XCopyTableWizard.idl
Dosyayı görüntüle @
c7052fd4
...
...
@@ -22,9 +22,9 @@
#
include
<
com
/
sun
/
star
/
ui
/
dialogs
/
XExecutableDialog
.
idl>
#
include
<
com
/
sun
/
star
/
lang
/
IllegalArgumentException
.
idl>
#
include
<
com
/
sun
/
star
/
sdbc
/
SQLException
.
idl>
#
include
<
com
/
sun
/
star
/
beans
/
Optional
.
idl>
module
com
{
module
sun
{
module
star
{
module
sdb
{
module
application
{
interface
XCopyTableListener
;
...
...
@@ -108,7 +108,8 @@ interface XCopyTableWizard : ::com::sun::star::ui::dialogs::XExecutableDialog
[attribute] ::com::sun::star::beans::Optional< string >
CreatePrimaryKey
{
set raises ( ::com::sun::star::lang::IllegalArgumentException );
set raises ( ::com::sun::star::lang::IllegalArgumentException,
::com::sun::star::sdbc::SQLException );
};
/** specifies that the first row should be used to identify column names.
...
...
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