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
990f52cb
Kaydet (Commit)
990f52cb
authored
Mar 27, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
SAL_OVERRIDE, Mac OS X connectivity redux
Change-Id: I9d4ef90501c9c36c77991d9521d08b327c3d0d5c
üst
e497edc2
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
371 additions
and
371 deletions
+371
-371
MacabCatalog.hxx
connectivity/source/drivers/macab/MacabCatalog.hxx
+5
-5
MacabColumns.hxx
connectivity/source/drivers/macab/MacabColumns.hxx
+2
-2
MacabConnection.hxx
connectivity/source/drivers/macab/MacabConnection.hxx
+23
-23
MacabDatabaseMetaData.hxx
connectivity/source/drivers/macab/MacabDatabaseMetaData.hxx
+149
-149
MacabDriver.hxx
connectivity/source/drivers/macab/MacabDriver.hxx
+12
-12
MacabPreparedStatement.hxx
connectivity/source/drivers/macab/MacabPreparedStatement.hxx
+33
-33
MacabResultSet.hxx
connectivity/source/drivers/macab/MacabResultSet.hxx
+85
-85
MacabResultSetMetaData.hxx
connectivity/source/drivers/macab/MacabResultSetMetaData.hxx
+21
-21
MacabStatement.hxx
connectivity/source/drivers/macab/MacabStatement.hxx
+19
-19
MacabTable.hxx
connectivity/source/drivers/macab/MacabTable.hxx
+1
-1
MacabTables.hxx
connectivity/source/drivers/macab/MacabTables.hxx
+3
-3
macabcondition.hxx
connectivity/source/drivers/macab/macabcondition.hxx
+16
-16
macaborder.hxx
connectivity/source/drivers/macab/macaborder.hxx
+2
-2
No files found.
connectivity/source/drivers/macab/MacabCatalog.hxx
Dosyayı görüntüle @
990f52cb
...
...
@@ -41,14 +41,14 @@ namespace connectivity
static
const
OUString
&
getDot
();
// implementation of the pure virtual methods
virtual
void
refreshTables
();
virtual
void
refreshViews
();
virtual
void
refreshGroups
();
virtual
void
refreshUsers
();
virtual
void
refreshTables
()
SAL_OVERRIDE
;
virtual
void
refreshViews
()
SAL_OVERRIDE
;
virtual
void
refreshGroups
()
SAL_OVERRIDE
;
virtual
void
refreshUsers
()
SAL_OVERRIDE
;
// XTablesSupplier
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
container
::
XNameAccess
>
SAL_CALL
getTables
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
};
}
}
...
...
connectivity/source/drivers/macab/MacabColumns.hxx
Dosyayı görüntüle @
990f52cb
...
...
@@ -32,8 +32,8 @@ namespace connectivity
protected
:
MacabTable
*
m_pTable
;
virtual
sdbcx
::
ObjectType
createObject
(
const
OUString
&
_rName
);
virtual
void
impl_refresh
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sdbcx
::
ObjectType
createObject
(
const
OUString
&
_rName
)
SAL_OVERRIDE
;
virtual
void
impl_refresh
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
public
:
MacabColumns
(
MacabTable
*
_pTable
,
...
...
connectivity/source/drivers/macab/MacabConnection.hxx
Dosyayı görüntüle @
990f52cb
...
...
@@ -73,40 +73,40 @@ namespace connectivity
void
closeAllStatements
()
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
);
// OComponentHelper
virtual
void
SAL_CALL
disposing
(
void
);
virtual
void
SAL_CALL
disposing
(
void
)
SAL_OVERRIDE
;
// XInterface
virtual
void
SAL_CALL
release
()
throw
();
virtual
void
SAL_CALL
release
()
throw
()
SAL_OVERRIDE
;
// XServiceInfo
DECLARE_SERVICE_INFO
();
// XConnection
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XStatement
>
SAL_CALL
createStatement
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XPreparedStatement
>
SAL_CALL
prepareStatement
(
const
OUString
&
sql
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XPreparedStatement
>
SAL_CALL
prepareCall
(
const
OUString
&
sql
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
nativeSQL
(
const
OUString
&
sql
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setAutoCommit
(
sal_Bool
autoCommit
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
getAutoCommit
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
commit
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
rollback
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
isClosed
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XDatabaseMetaData
>
SAL_CALL
getMetaData
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setReadOnly
(
sal_Bool
readOnly
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
isReadOnly
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setCatalog
(
const
OUString
&
catalog
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getCatalog
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setTransactionIsolation
(
sal_Int32
level
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getTransactionIsolation
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
container
::
XNameAccess
>
SAL_CALL
getTypeMap
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setTypeMap
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
container
::
XNameAccess
>&
typeMap
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XStatement
>
SAL_CALL
createStatement
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XPreparedStatement
>
SAL_CALL
prepareStatement
(
const
OUString
&
sql
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XPreparedStatement
>
SAL_CALL
prepareCall
(
const
OUString
&
sql
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
nativeSQL
(
const
OUString
&
sql
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setAutoCommit
(
sal_Bool
autoCommit
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
getAutoCommit
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
commit
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
rollback
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
isClosed
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XDatabaseMetaData
>
SAL_CALL
getMetaData
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setReadOnly
(
sal_Bool
readOnly
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
isReadOnly
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setCatalog
(
const
OUString
&
catalog
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getCatalog
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setTransactionIsolation
(
sal_Int32
level
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getTransactionIsolation
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
container
::
XNameAccess
>
SAL_CALL
getTypeMap
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setTypeMap
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
container
::
XNameAccess
>&
typeMap
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
// XCloseable
virtual
void
SAL_CALL
close
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
close
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
// XWarningsSupplier
virtual
::
com
::
sun
::
star
::
uno
::
Any
SAL_CALL
getWarnings
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
clearWarnings
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Any
SAL_CALL
getWarnings
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
clearWarnings
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
// needed for the SQL interpreter
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbcx
::
XTablesSupplier
>
SAL_CALL
createCatalog
();
...
...
connectivity/source/drivers/macab/MacabDatabaseMetaData.hxx
Dosyayı görüntüle @
990f52cb
...
...
@@ -48,155 +48,155 @@ namespace connectivity
// this interface is really BIG
// XDatabaseMetaData
virtual
sal_Bool
SAL_CALL
allProceduresAreCallable
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
allTablesAreSelectable
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getURL
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getUserName
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
isReadOnly
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
nullsAreSortedHigh
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
nullsAreSortedLow
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
nullsAreSortedAtStart
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
nullsAreSortedAtEnd
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getDatabaseProductName
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getDatabaseProductVersion
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getDriverName
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getDriverVersion
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getDriverMajorVersion
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getDriverMinorVersion
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
usesLocalFiles
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
usesLocalFilePerTable
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsMixedCaseIdentifiers
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
storesUpperCaseIdentifiers
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
storesLowerCaseIdentifiers
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
storesMixedCaseIdentifiers
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsMixedCaseQuotedIdentifiers
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
storesUpperCaseQuotedIdentifiers
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
storesLowerCaseQuotedIdentifiers
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
storesMixedCaseQuotedIdentifiers
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getIdentifierQuoteString
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getSQLKeywords
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getNumericFunctions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getStringFunctions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getSystemFunctions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getTimeDateFunctions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getSearchStringEscape
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getExtraNameCharacters
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsAlterTableWithAddColumn
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsAlterTableWithDropColumn
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsColumnAliasing
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
nullPlusNonNullIsNull
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsTypeConversion
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsConvert
(
sal_Int32
fromType
,
sal_Int32
toType
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsTableCorrelationNames
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsDifferentTableCorrelationNames
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsExpressionsInOrderBy
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsOrderByUnrelated
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsGroupBy
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsGroupByUnrelated
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsGroupByBeyondSelect
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsLikeEscapeClause
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsMultipleResultSets
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsMultipleTransactions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsNonNullableColumns
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsMinimumSQLGrammar
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsCoreSQLGrammar
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsExtendedSQLGrammar
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsANSI92EntryLevelSQL
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsANSI92IntermediateSQL
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsANSI92FullSQL
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsIntegrityEnhancementFacility
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsOuterJoins
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsFullOuterJoins
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsLimitedOuterJoins
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getSchemaTerm
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getProcedureTerm
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getCatalogTerm
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
isCatalogAtStart
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getCatalogSeparator
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsSchemasInDataManipulation
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsSchemasInProcedureCalls
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsSchemasInTableDefinitions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsSchemasInIndexDefinitions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsSchemasInPrivilegeDefinitions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsCatalogsInDataManipulation
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsCatalogsInProcedureCalls
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsCatalogsInTableDefinitions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsCatalogsInIndexDefinitions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsCatalogsInPrivilegeDefinitions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsPositionedDelete
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsPositionedUpdate
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsSelectForUpdate
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsStoredProcedures
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsSubqueriesInComparisons
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsSubqueriesInExists
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsSubqueriesInIns
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsSubqueriesInQuantifieds
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsCorrelatedSubqueries
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsUnion
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsUnionAll
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsOpenCursorsAcrossCommit
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsOpenCursorsAcrossRollback
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsOpenStatementsAcrossCommit
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsOpenStatementsAcrossRollback
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getMaxBinaryLiteralLength
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getMaxCharLiteralLength
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getMaxColumnNameLength
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getMaxColumnsInGroupBy
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getMaxColumnsInIndex
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getMaxColumnsInOrderBy
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getMaxColumnsInSelect
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getMaxColumnsInTable
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getMaxConnections
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getMaxCursorNameLength
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getMaxIndexLength
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getMaxSchemaNameLength
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getMaxProcedureNameLength
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getMaxCatalogNameLength
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getMaxRowSize
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
doesMaxRowSizeIncludeBlobs
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getMaxStatementLength
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getMaxStatements
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getMaxTableNameLength
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getMaxTablesInSelect
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getMaxUserNameLength
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getDefaultTransactionIsolation
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsTransactions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsTransactionIsolationLevel
(
sal_Int32
level
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsDataDefinitionAndDataManipulationTransactions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsDataManipulationTransactionsOnly
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
dataDefinitionCausesTransactionCommit
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
dataDefinitionIgnoredInTransactions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getProcedures
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
catalog
,
const
OUString
&
schemaPattern
,
const
OUString
&
procedureNamePattern
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getProcedureColumns
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
catalog
,
const
OUString
&
schemaPattern
,
const
OUString
&
procedureNamePattern
,
const
OUString
&
columnNamePattern
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getTables
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
catalog
,
const
OUString
&
schemaPattern
,
const
OUString
&
tableNamePattern
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
OUString
>&
types
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getSchemas
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getCatalogs
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getTableTypes
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getColumns
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
catalog
,
const
OUString
&
schemaPattern
,
const
OUString
&
tableNamePattern
,
const
OUString
&
columnNamePattern
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getColumnPrivileges
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
catalog
,
const
OUString
&
schema
,
const
OUString
&
table
,
const
OUString
&
columnNamePattern
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getTablePrivileges
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
catalog
,
const
OUString
&
schemaPattern
,
const
OUString
&
tableNamePattern
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getBestRowIdentifier
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
catalog
,
const
OUString
&
schema
,
const
OUString
&
table
,
sal_Int32
scope
,
sal_Bool
nullable
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getVersionColumns
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
catalog
,
const
OUString
&
schema
,
const
OUString
&
table
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getPrimaryKeys
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
catalog
,
const
OUString
&
schema
,
const
OUString
&
table
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getImportedKeys
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
catalog
,
const
OUString
&
schema
,
const
OUString
&
table
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getExportedKeys
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
catalog
,
const
OUString
&
schema
,
const
OUString
&
table
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getCrossReference
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
primaryCatalog
,
const
OUString
&
primarySchema
,
const
OUString
&
primaryTable
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
foreignCatalog
,
const
OUString
&
foreignSchema
,
const
OUString
&
foreignTable
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getTypeInfo
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getIndexInfo
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
catalog
,
const
OUString
&
schema
,
const
OUString
&
table
,
sal_Bool
unique
,
sal_Bool
approximate
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsResultSetType
(
sal_Int32
setType
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsResultSetConcurrency
(
sal_Int32
setType
,
sal_Int32
concurrency
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
ownUpdatesAreVisible
(
sal_Int32
setType
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
ownDeletesAreVisible
(
sal_Int32
setType
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
ownInsertsAreVisible
(
sal_Int32
setType
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
othersUpdatesAreVisible
(
sal_Int32
setType
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
othersDeletesAreVisible
(
sal_Int32
setType
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
othersInsertsAreVisible
(
sal_Int32
setType
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
updatesAreDetected
(
sal_Int32
setType
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
deletesAreDetected
(
sal_Int32
setType
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
insertsAreDetected
(
sal_Int32
setType
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsBatchUpdates
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getUDTs
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
catalog
,
const
OUString
&
schemaPattern
,
const
OUString
&
typeNamePattern
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
sal_Int32
>&
types
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XConnection
>
SAL_CALL
getConnection
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
allProceduresAreCallable
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
allTablesAreSelectable
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getURL
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getUserName
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
isReadOnly
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
nullsAreSortedHigh
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
nullsAreSortedLow
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
nullsAreSortedAtStart
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
nullsAreSortedAtEnd
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getDatabaseProductName
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getDatabaseProductVersion
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getDriverName
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getDriverVersion
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getDriverMajorVersion
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getDriverMinorVersion
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
usesLocalFiles
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
usesLocalFilePerTable
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsMixedCaseIdentifiers
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
storesUpperCaseIdentifiers
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
storesLowerCaseIdentifiers
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
storesMixedCaseIdentifiers
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsMixedCaseQuotedIdentifiers
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
storesUpperCaseQuotedIdentifiers
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
storesLowerCaseQuotedIdentifiers
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
storesMixedCaseQuotedIdentifiers
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getIdentifierQuoteString
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getSQLKeywords
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getNumericFunctions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getStringFunctions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getSystemFunctions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getTimeDateFunctions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getSearchStringEscape
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getExtraNameCharacters
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsAlterTableWithAddColumn
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsAlterTableWithDropColumn
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsColumnAliasing
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
nullPlusNonNullIsNull
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsTypeConversion
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsConvert
(
sal_Int32
fromType
,
sal_Int32
toType
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsTableCorrelationNames
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsDifferentTableCorrelationNames
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsExpressionsInOrderBy
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsOrderByUnrelated
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsGroupBy
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsGroupByUnrelated
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsGroupByBeyondSelect
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsLikeEscapeClause
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsMultipleResultSets
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsMultipleTransactions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsNonNullableColumns
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsMinimumSQLGrammar
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsCoreSQLGrammar
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsExtendedSQLGrammar
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsANSI92EntryLevelSQL
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsANSI92IntermediateSQL
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsANSI92FullSQL
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsIntegrityEnhancementFacility
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsOuterJoins
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsFullOuterJoins
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsLimitedOuterJoins
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getSchemaTerm
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getProcedureTerm
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getCatalogTerm
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
isCatalogAtStart
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getCatalogSeparator
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsSchemasInDataManipulation
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsSchemasInProcedureCalls
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsSchemasInTableDefinitions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsSchemasInIndexDefinitions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsSchemasInPrivilegeDefinitions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsCatalogsInDataManipulation
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsCatalogsInProcedureCalls
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsCatalogsInTableDefinitions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsCatalogsInIndexDefinitions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsCatalogsInPrivilegeDefinitions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsPositionedDelete
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsPositionedUpdate
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsSelectForUpdate
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsStoredProcedures
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsSubqueriesInComparisons
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsSubqueriesInExists
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsSubqueriesInIns
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsSubqueriesInQuantifieds
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsCorrelatedSubqueries
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsUnion
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsUnionAll
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsOpenCursorsAcrossCommit
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsOpenCursorsAcrossRollback
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsOpenStatementsAcrossCommit
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsOpenStatementsAcrossRollback
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getMaxBinaryLiteralLength
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getMaxCharLiteralLength
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getMaxColumnNameLength
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getMaxColumnsInGroupBy
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getMaxColumnsInIndex
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getMaxColumnsInOrderBy
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getMaxColumnsInSelect
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getMaxColumnsInTable
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getMaxConnections
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getMaxCursorNameLength
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getMaxIndexLength
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getMaxSchemaNameLength
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getMaxProcedureNameLength
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getMaxCatalogNameLength
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getMaxRowSize
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
doesMaxRowSizeIncludeBlobs
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getMaxStatementLength
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getMaxStatements
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getMaxTableNameLength
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getMaxTablesInSelect
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getMaxUserNameLength
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getDefaultTransactionIsolation
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsTransactions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsTransactionIsolationLevel
(
sal_Int32
level
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsDataDefinitionAndDataManipulationTransactions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsDataManipulationTransactionsOnly
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
dataDefinitionCausesTransactionCommit
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
dataDefinitionIgnoredInTransactions
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getProcedures
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
catalog
,
const
OUString
&
schemaPattern
,
const
OUString
&
procedureNamePattern
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getProcedureColumns
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
catalog
,
const
OUString
&
schemaPattern
,
const
OUString
&
procedureNamePattern
,
const
OUString
&
columnNamePattern
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getTables
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
catalog
,
const
OUString
&
schemaPattern
,
const
OUString
&
tableNamePattern
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
OUString
>&
types
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getSchemas
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getCatalogs
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getTableTypes
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getColumns
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
catalog
,
const
OUString
&
schemaPattern
,
const
OUString
&
tableNamePattern
,
const
OUString
&
columnNamePattern
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getColumnPrivileges
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
catalog
,
const
OUString
&
schema
,
const
OUString
&
table
,
const
OUString
&
columnNamePattern
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getTablePrivileges
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
catalog
,
const
OUString
&
schemaPattern
,
const
OUString
&
tableNamePattern
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getBestRowIdentifier
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
catalog
,
const
OUString
&
schema
,
const
OUString
&
table
,
sal_Int32
scope
,
sal_Bool
nullable
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getVersionColumns
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
catalog
,
const
OUString
&
schema
,
const
OUString
&
table
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getPrimaryKeys
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
catalog
,
const
OUString
&
schema
,
const
OUString
&
table
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getImportedKeys
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
catalog
,
const
OUString
&
schema
,
const
OUString
&
table
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getExportedKeys
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
catalog
,
const
OUString
&
schema
,
const
OUString
&
table
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getCrossReference
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
primaryCatalog
,
const
OUString
&
primarySchema
,
const
OUString
&
primaryTable
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
foreignCatalog
,
const
OUString
&
foreignSchema
,
const
OUString
&
foreignTable
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getTypeInfo
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getIndexInfo
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
catalog
,
const
OUString
&
schema
,
const
OUString
&
table
,
sal_Bool
unique
,
sal_Bool
approximate
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsResultSetType
(
sal_Int32
setType
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsResultSetConcurrency
(
sal_Int32
setType
,
sal_Int32
concurrency
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
ownUpdatesAreVisible
(
sal_Int32
setType
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
ownDeletesAreVisible
(
sal_Int32
setType
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
ownInsertsAreVisible
(
sal_Int32
setType
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
othersUpdatesAreVisible
(
sal_Int32
setType
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
othersDeletesAreVisible
(
sal_Int32
setType
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
othersInsertsAreVisible
(
sal_Int32
setType
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
updatesAreDetected
(
sal_Int32
setType
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
deletesAreDetected
(
sal_Int32
setType
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
insertsAreDetected
(
sal_Int32
setType
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsBatchUpdates
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
getUDTs
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
catalog
,
const
OUString
&
schemaPattern
,
const
OUString
&
typeNamePattern
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
sal_Int32
>&
types
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XConnection
>
SAL_CALL
getConnection
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
};
}
}
...
...
connectivity/source/drivers/macab/MacabDriver.hxx
Dosyayı görüntüle @
990f52cb
...
...
@@ -147,26 +147,26 @@ namespace connectivity
MacabDriver
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
uno
::
XComponentContext
>&
_rxContext
);
// OComponentHelper
virtual
void
SAL_CALL
disposing
(
void
);
virtual
void
SAL_CALL
disposing
(
void
)
SAL_OVERRIDE
;
// XServiceInfo
virtual
OUString
SAL_CALL
getImplementationName
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsService
(
const
OUString
&
ServiceName
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getImplementationName
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsService
(
const
OUString
&
ServiceName
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
// XDriver
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XConnection
>
SAL_CALL
connect
(
const
OUString
&
url
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
beans
::
PropertyValue
>&
info
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
acceptsURL
(
const
OUString
&
url
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
sdbc
::
DriverPropertyInfo
>
SAL_CALL
getPropertyInfo
(
const
OUString
&
url
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
beans
::
PropertyValue
>&
info
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getMajorVersion
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getMinorVersion
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XConnection
>
SAL_CALL
connect
(
const
OUString
&
url
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
beans
::
PropertyValue
>&
info
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
acceptsURL
(
const
OUString
&
url
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
sdbc
::
DriverPropertyInfo
>
SAL_CALL
getPropertyInfo
(
const
OUString
&
url
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
beans
::
PropertyValue
>&
info
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getMajorVersion
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getMinorVersion
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
// XTerminateListener
virtual
void
SAL_CALL
queryTermination
(
const
::
com
::
sun
::
star
::
lang
::
EventObject
&
Event
)
throw
(
::
com
::
sun
::
star
::
frame
::
TerminationVetoException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
notifyTermination
(
const
::
com
::
sun
::
star
::
lang
::
EventObject
&
Event
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
queryTermination
(
const
::
com
::
sun
::
star
::
lang
::
EventObject
&
Event
)
throw
(
::
com
::
sun
::
star
::
frame
::
TerminationVetoException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
notifyTermination
(
const
::
com
::
sun
::
star
::
lang
::
EventObject
&
Event
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
// XEventListener
virtual
void
SAL_CALL
disposing
(
const
::
com
::
sun
::
star
::
lang
::
EventObject
&
Source
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
disposing
(
const
::
com
::
sun
::
star
::
lang
::
EventObject
&
Source
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
private
:
/** shuts down the library which contains the real implementations
...
...
connectivity/source/drivers/macab/MacabPreparedStatement.hxx
Dosyayı görüntüle @
990f52cb
...
...
@@ -53,10 +53,10 @@ namespace connectivity
protected
:
virtual
void
SAL_CALL
setFastPropertyValue_NoBroadcast
(
sal_Int32
nHandle
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
rValue
)
throw
(
::
com
::
sun
::
star
::
uno
::
Exception
);
const
::
com
::
sun
::
star
::
uno
::
Any
&
rValue
)
throw
(
::
com
::
sun
::
star
::
uno
::
Exception
)
SAL_OVERRIDE
;
virtual
void
resetParameters
()
const
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
);
virtual
void
getNextParameter
(
OUString
&
rParameter
)
const
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
);
virtual
void
resetParameters
()
const
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
)
SAL_OVERRIDE
;
virtual
void
getNextParameter
(
OUString
&
rParameter
)
const
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
)
SAL_OVERRIDE
;
virtual
~
MacabPreparedStatement
();
public
:
...
...
@@ -64,48 +64,48 @@ namespace connectivity
MacabPreparedStatement
(
MacabConnection
*
_pConnection
,
const
OUString
&
sql
);
// OComponentHelper
virtual
void
SAL_CALL
disposing
();
virtual
void
SAL_CALL
disposing
()
SAL_OVERRIDE
;
// XPreparedStatement
using
MacabCommonStatement
::
executeQuery
;
using
MacabCommonStatement
::
executeUpdate
;
using
MacabCommonStatement
::
execute
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
executeQuery
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
executeUpdate
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
execute
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XConnection
>
SAL_CALL
getConnection
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
executeQuery
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
executeUpdate
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
execute
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XConnection
>
SAL_CALL
getConnection
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
// XParameters
virtual
void
SAL_CALL
setNull
(
sal_Int32
parameterIndex
,
sal_Int32
sqlType
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setObjectNull
(
sal_Int32
parameterIndex
,
sal_Int32
sqlType
,
const
OUString
&
typeName
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setBoolean
(
sal_Int32
parameterIndex
,
sal_Bool
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setByte
(
sal_Int32
parameterIndex
,
sal_Int8
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setShort
(
sal_Int32
parameterIndex
,
sal_Int16
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setInt
(
sal_Int32
parameterIndex
,
sal_Int32
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setLong
(
sal_Int32
parameterIndex
,
sal_Int64
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setFloat
(
sal_Int32
parameterIndex
,
float
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setDouble
(
sal_Int32
parameterIndex
,
double
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setString
(
sal_Int32
parameterIndex
,
const
OUString
&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setBytes
(
sal_Int32
parameterIndex
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
sal_Int8
>&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setDate
(
sal_Int32
parameterIndex
,
const
::
com
::
sun
::
star
::
util
::
Date
&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setTime
(
sal_Int32
parameterIndex
,
const
::
com
::
sun
::
star
::
util
::
Time
&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setTimestamp
(
sal_Int32
parameterIndex
,
const
::
com
::
sun
::
star
::
util
::
DateTime
&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setBinaryStream
(
sal_Int32
parameterIndex
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
io
::
XInputStream
>&
x
,
sal_Int32
length
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setCharacterStream
(
sal_Int32
parameterIndex
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
io
::
XInputStream
>&
x
,
sal_Int32
length
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setObject
(
sal_Int32
parameterIndex
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setObjectWithInfo
(
sal_Int32
parameterIndex
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
x
,
sal_Int32
targetSqlType
,
sal_Int32
scale
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setRef
(
sal_Int32
parameterIndex
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XRef
>&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setBlob
(
sal_Int32
parameterIndex
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XBlob
>&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setClob
(
sal_Int32
parameterIndex
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XClob
>&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setArray
(
sal_Int32
parameterIndex
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XArray
>&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
clearParameters
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setNull
(
sal_Int32
parameterIndex
,
sal_Int32
sqlType
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setObjectNull
(
sal_Int32
parameterIndex
,
sal_Int32
sqlType
,
const
OUString
&
typeName
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setBoolean
(
sal_Int32
parameterIndex
,
sal_Bool
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setByte
(
sal_Int32
parameterIndex
,
sal_Int8
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setShort
(
sal_Int32
parameterIndex
,
sal_Int16
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setInt
(
sal_Int32
parameterIndex
,
sal_Int32
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setLong
(
sal_Int32
parameterIndex
,
sal_Int64
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setFloat
(
sal_Int32
parameterIndex
,
float
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setDouble
(
sal_Int32
parameterIndex
,
double
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setString
(
sal_Int32
parameterIndex
,
const
OUString
&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setBytes
(
sal_Int32
parameterIndex
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
sal_Int8
>&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setDate
(
sal_Int32
parameterIndex
,
const
::
com
::
sun
::
star
::
util
::
Date
&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setTime
(
sal_Int32
parameterIndex
,
const
::
com
::
sun
::
star
::
util
::
Time
&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setTimestamp
(
sal_Int32
parameterIndex
,
const
::
com
::
sun
::
star
::
util
::
DateTime
&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setBinaryStream
(
sal_Int32
parameterIndex
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
io
::
XInputStream
>&
x
,
sal_Int32
length
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setCharacterStream
(
sal_Int32
parameterIndex
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
io
::
XInputStream
>&
x
,
sal_Int32
length
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setObject
(
sal_Int32
parameterIndex
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setObjectWithInfo
(
sal_Int32
parameterIndex
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
x
,
sal_Int32
targetSqlType
,
sal_Int32
scale
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setRef
(
sal_Int32
parameterIndex
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XRef
>&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setBlob
(
sal_Int32
parameterIndex
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XBlob
>&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setClob
(
sal_Int32
parameterIndex
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XClob
>&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setArray
(
sal_Int32
parameterIndex
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XArray
>&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
clearParameters
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
// XCloseable
virtual
void
SAL_CALL
close
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
close
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
// XResultSetMetaDataSupplier
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSetMetaData
>
SAL_CALL
getMetaData
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSetMetaData
>
SAL_CALL
getMetaData
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
};
}
}
...
...
connectivity/source/drivers/macab/MacabResultSet.hxx
Dosyayı görüntüle @
990f52cb
...
...
@@ -66,24 +66,24 @@ namespace connectivity
OUString
m_sTableName
;
// OPropertyArrayUsageHelper
virtual
::
cppu
::
IPropertyArrayHelper
*
createArrayHelper
(
)
const
;
virtual
::
cppu
::
IPropertyArrayHelper
*
createArrayHelper
(
)
const
SAL_OVERRIDE
;
// OPropertySetHelper
virtual
::
cppu
::
IPropertyArrayHelper
&
SAL_CALL
getInfoHelper
();
virtual
::
cppu
::
IPropertyArrayHelper
&
SAL_CALL
getInfoHelper
()
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
convertFastPropertyValue
(
::
com
::
sun
::
star
::
uno
::
Any
&
rConvertedValue
,
::
com
::
sun
::
star
::
uno
::
Any
&
rOldValue
,
sal_Int32
nHandle
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
rValue
)
throw
(
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
);
throw
(
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setFastPropertyValue_NoBroadcast
(
sal_Int32
nHandle
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
rValue
)
throw
(
::
com
::
sun
::
star
::
uno
::
Exception
);
throw
(
::
com
::
sun
::
star
::
uno
::
Exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
getFastPropertyValue
(
::
com
::
sun
::
star
::
uno
::
Any
&
rValue
,
sal_Int32
nHandle
)
const
;
sal_Int32
nHandle
)
const
SAL_OVERRIDE
;
// you can't delete objects of this type
virtual
~
MacabResultSet
();
...
...
@@ -104,113 +104,113 @@ namespace connectivity
void
setTableName
(
const
OUString
&
_sTableName
);
// ::cppu::OComponentHelper
virtual
void
SAL_CALL
disposing
(
void
);
virtual
void
SAL_CALL
disposing
(
void
)
SAL_OVERRIDE
;
// XInterface
virtual
::
com
::
sun
::
star
::
uno
::
Any
SAL_CALL
queryInterface
(
const
::
com
::
sun
::
star
::
uno
::
Type
&
rType
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
acquire
()
throw
();
virtual
void
SAL_CALL
release
()
throw
();
virtual
::
com
::
sun
::
star
::
uno
::
Any
SAL_CALL
queryInterface
(
const
::
com
::
sun
::
star
::
uno
::
Type
&
rType
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
acquire
()
throw
()
SAL_OVERRIDE
;
virtual
void
SAL_CALL
release
()
throw
()
SAL_OVERRIDE
;
// XTypeProvider
virtual
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
uno
::
Type
>
SAL_CALL
getTypes
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
uno
::
Type
>
SAL_CALL
getTypes
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
// XPropertySet
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
beans
::
XPropertySetInfo
>
SAL_CALL
getPropertySetInfo
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
beans
::
XPropertySetInfo
>
SAL_CALL
getPropertySetInfo
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
// XResultSet
virtual
sal_Bool
SAL_CALL
isBeforeFirst
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
isAfterLast
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
isFirst
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
isLast
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
beforeFirst
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
afterLast
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
first
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
last
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getRow
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
absolute
(
sal_Int32
row
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
relative
(
sal_Int32
rows
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
next
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
previous
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
refreshRow
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
rowUpdated
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
rowInserted
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
rowDeleted
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
uno
::
XInterface
>
SAL_CALL
getStatement
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
isBeforeFirst
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
isAfterLast
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
isFirst
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
isLast
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
beforeFirst
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
afterLast
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
first
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
last
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getRow
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
absolute
(
sal_Int32
row
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
relative
(
sal_Int32
rows
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
next
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
previous
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
refreshRow
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
rowUpdated
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
rowInserted
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
rowDeleted
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
uno
::
XInterface
>
SAL_CALL
getStatement
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
// XRow
virtual
sal_Bool
SAL_CALL
wasNull
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getString
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
getBoolean
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int8
SAL_CALL
getByte
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int16
SAL_CALL
getShort
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getInt
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int64
SAL_CALL
getLong
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
float
SAL_CALL
getFloat
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
double
SAL_CALL
getDouble
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Sequence
<
sal_Int8
>
SAL_CALL
getBytes
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
util
::
Date
SAL_CALL
getDate
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
util
::
Time
SAL_CALL
getTime
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
util
::
DateTime
SAL_CALL
getTimestamp
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
io
::
XInputStream
>
SAL_CALL
getBinaryStream
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
io
::
XInputStream
>
SAL_CALL
getCharacterStream
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Any
SAL_CALL
getObject
(
sal_Int32
columnIndex
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
container
::
XNameAccess
>&
typeMap
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XRef
>
SAL_CALL
getRef
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XBlob
>
SAL_CALL
getBlob
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XClob
>
SAL_CALL
getClob
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XArray
>
SAL_CALL
getArray
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
wasNull
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getString
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
getBoolean
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int8
SAL_CALL
getByte
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int16
SAL_CALL
getShort
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getInt
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int64
SAL_CALL
getLong
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
float
SAL_CALL
getFloat
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
double
SAL_CALL
getDouble
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Sequence
<
sal_Int8
>
SAL_CALL
getBytes
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
util
::
Date
SAL_CALL
getDate
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
util
::
Time
SAL_CALL
getTime
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
util
::
DateTime
SAL_CALL
getTimestamp
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
io
::
XInputStream
>
SAL_CALL
getBinaryStream
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
io
::
XInputStream
>
SAL_CALL
getCharacterStream
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Any
SAL_CALL
getObject
(
sal_Int32
columnIndex
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
container
::
XNameAccess
>&
typeMap
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XRef
>
SAL_CALL
getRef
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XBlob
>
SAL_CALL
getBlob
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XClob
>
SAL_CALL
getClob
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XArray
>
SAL_CALL
getArray
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
// XResultSetMetaDataSupplier
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSetMetaData
>
SAL_CALL
getMetaData
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSetMetaData
>
SAL_CALL
getMetaData
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
// XCancellable
virtual
void
SAL_CALL
cancel
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
cancel
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
// XCloseable
virtual
void
SAL_CALL
close
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
close
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
// XWarningsSupplier
virtual
::
com
::
sun
::
star
::
uno
::
Any
SAL_CALL
getWarnings
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
clearWarnings
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Any
SAL_CALL
getWarnings
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
clearWarnings
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
// XResultSetUpdate
virtual
void
SAL_CALL
insertRow
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
updateRow
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
deleteRow
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
cancelRowUpdates
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
moveToInsertRow
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
moveToCurrentRow
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
insertRow
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
updateRow
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
deleteRow
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
cancelRowUpdates
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
moveToInsertRow
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
moveToCurrentRow
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
// XRowUpdate
virtual
void
SAL_CALL
updateNull
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
updateBoolean
(
sal_Int32
columnIndex
,
sal_Bool
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
updateByte
(
sal_Int32
columnIndex
,
sal_Int8
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
updateShort
(
sal_Int32
columnIndex
,
sal_Int16
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
updateInt
(
sal_Int32
columnIndex
,
sal_Int32
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
updateLong
(
sal_Int32
columnIndex
,
sal_Int64
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
updateFloat
(
sal_Int32
columnIndex
,
float
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
updateDouble
(
sal_Int32
columnIndex
,
double
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
updateString
(
sal_Int32
columnIndex
,
const
OUString
&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
updateBytes
(
sal_Int32
columnIndex
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
sal_Int8
>&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
updateDate
(
sal_Int32
columnIndex
,
const
::
com
::
sun
::
star
::
util
::
Date
&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
updateTime
(
sal_Int32
columnIndex
,
const
::
com
::
sun
::
star
::
util
::
Time
&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
updateTimestamp
(
sal_Int32
columnIndex
,
const
::
com
::
sun
::
star
::
util
::
DateTime
&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
updateBinaryStream
(
sal_Int32
columnIndex
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
io
::
XInputStream
>&
x
,
sal_Int32
length
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
updateCharacterStream
(
sal_Int32
columnIndex
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
io
::
XInputStream
>&
x
,
sal_Int32
length
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
updateObject
(
sal_Int32
columnIndex
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
updateNumericObject
(
sal_Int32
columnIndex
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
x
,
sal_Int32
scale
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
updateNull
(
sal_Int32
columnIndex
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
updateBoolean
(
sal_Int32
columnIndex
,
sal_Bool
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
updateByte
(
sal_Int32
columnIndex
,
sal_Int8
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
updateShort
(
sal_Int32
columnIndex
,
sal_Int16
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
updateInt
(
sal_Int32
columnIndex
,
sal_Int32
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
updateLong
(
sal_Int32
columnIndex
,
sal_Int64
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
updateFloat
(
sal_Int32
columnIndex
,
float
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
updateDouble
(
sal_Int32
columnIndex
,
double
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
updateString
(
sal_Int32
columnIndex
,
const
OUString
&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
updateBytes
(
sal_Int32
columnIndex
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
sal_Int8
>&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
updateDate
(
sal_Int32
columnIndex
,
const
::
com
::
sun
::
star
::
util
::
Date
&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
updateTime
(
sal_Int32
columnIndex
,
const
::
com
::
sun
::
star
::
util
::
Time
&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
updateTimestamp
(
sal_Int32
columnIndex
,
const
::
com
::
sun
::
star
::
util
::
DateTime
&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
updateBinaryStream
(
sal_Int32
columnIndex
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
io
::
XInputStream
>&
x
,
sal_Int32
length
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
updateCharacterStream
(
sal_Int32
columnIndex
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
io
::
XInputStream
>&
x
,
sal_Int32
length
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
updateObject
(
sal_Int32
columnIndex
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
x
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
updateNumericObject
(
sal_Int32
columnIndex
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
x
,
sal_Int32
scale
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
// XColumnLocate
virtual
sal_Int32
SAL_CALL
findColumn
(
const
OUString
&
columnName
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
findColumn
(
const
OUString
&
columnName
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
// XRowLocate
virtual
::
com
::
sun
::
star
::
uno
::
Any
SAL_CALL
getBookmark
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
moveToBookmark
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
bookmark
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
moveRelativeToBookmark
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
bookmark
,
sal_Int32
rows
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
compareBookmarks
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
firstItem
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
secondItem
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
hasOrderedBookmarks
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
hashBookmark
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
bookmark
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Any
SAL_CALL
getBookmark
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
moveToBookmark
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
bookmark
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
moveRelativeToBookmark
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
bookmark
,
sal_Int32
rows
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
compareBookmarks
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
firstItem
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
secondItem
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
hasOrderedBookmarks
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
hashBookmark
(
const
::
com
::
sun
::
star
::
uno
::
Any
&
bookmark
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
// XDeleteRows
virtual
::
com
::
sun
::
star
::
uno
::
Sequence
<
sal_Int32
>
SAL_CALL
deleteRows
(
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
uno
::
Any
>&
rows
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Sequence
<
sal_Int32
>
SAL_CALL
deleteRows
(
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
uno
::
Any
>&
rows
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
};
}
}
...
...
connectivity/source/drivers/macab/MacabResultSetMetaData.hxx
Dosyayı görüntüle @
990f52cb
...
...
@@ -58,27 +58,27 @@ namespace connectivity
inline
sal_uInt32
fieldAtColumn
(
sal_Int32
columnIndex
)
const
{
return
m_aMacabFields
[
columnIndex
-
1
];
}
virtual
sal_Int32
SAL_CALL
getColumnCount
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
isAutoIncrement
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
isCaseSensitive
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
isSearchable
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
isCurrency
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
isNullable
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
isSigned
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getColumnDisplaySize
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getColumnLabel
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getColumnName
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getSchemaName
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getPrecision
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getScale
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getTableName
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getCatalogName
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getColumnType
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getColumnTypeName
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
isReadOnly
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
isWritable
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
isDefinitelyWritable
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getColumnServiceName
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int32
SAL_CALL
getColumnCount
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
isAutoIncrement
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
isCaseSensitive
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
isSearchable
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
isCurrency
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
isNullable
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
isSigned
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getColumnDisplaySize
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getColumnLabel
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getColumnName
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getSchemaName
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getPrecision
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getScale
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getTableName
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getCatalogName
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
getColumnType
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getColumnTypeName
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
isReadOnly
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
isWritable
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
isDefinitelyWritable
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
OUString
SAL_CALL
getColumnServiceName
(
sal_Int32
column
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
};
}
}
...
...
connectivity/source/drivers/macab/MacabStatement.hxx
Dosyayı görüntüle @
990f52cb
...
...
@@ -73,21 +73,21 @@ namespace connectivity
void
sortRecords
(
MacabResultSet
*
pResult
)
const
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
);
// OPropertyArrayUsageHelper
virtual
::
cppu
::
IPropertyArrayHelper
*
createArrayHelper
()
const
;
virtual
::
cppu
::
IPropertyArrayHelper
*
createArrayHelper
()
const
SAL_OVERRIDE
;
// OPropertySetHelper
virtual
::
cppu
::
IPropertyArrayHelper
&
SAL_CALL
getInfoHelper
();
virtual
::
cppu
::
IPropertyArrayHelper
&
SAL_CALL
getInfoHelper
()
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
convertFastPropertyValue
(
::
com
::
sun
::
star
::
uno
::
Any
&
rConvertedValue
,
::
com
::
sun
::
star
::
uno
::
Any
&
rOldValue
,
sal_Int32
nHandle
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
rValue
)
throw
(
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
);
const
::
com
::
sun
::
star
::
uno
::
Any
&
rValue
)
throw
(
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setFastPropertyValue_NoBroadcast
(
sal_Int32
nHandle
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
rValue
)
throw
(
::
com
::
sun
::
star
::
uno
::
Exception
);
const
::
com
::
sun
::
star
::
uno
::
Any
&
rValue
)
throw
(
::
com
::
sun
::
star
::
uno
::
Exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
getFastPropertyValue
(
::
com
::
sun
::
star
::
uno
::
Any
&
rValue
,
sal_Int32
nHandle
)
const
;
sal_Int32
nHandle
)
const
SAL_OVERRIDE
;
virtual
void
resetParameters
()
const
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
);
virtual
void
getNextParameter
(
OUString
&
rParameter
)
const
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
);
...
...
@@ -100,46 +100,46 @@ namespace connectivity
using
MacabCommonStatement_BASE
::
operator
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
uno
::
XInterface
>
;
// OComponentHelper
virtual
void
SAL_CALL
disposing
();
virtual
void
SAL_CALL
disposing
()
SAL_OVERRIDE
;
// XInterface
virtual
void
SAL_CALL
release
()
throw
();
virtual
void
SAL_CALL
acquire
()
throw
();
virtual
void
SAL_CALL
release
()
throw
()
SAL_OVERRIDE
;
virtual
void
SAL_CALL
acquire
()
throw
()
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Any
SAL_CALL
queryInterface
(
const
::
com
::
sun
::
star
::
uno
::
Type
&
rType
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
// XTypeProvider
virtual
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
uno
::
Type
>
SAL_CALL
getTypes
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
// XPropertySet
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
beans
::
XPropertySetInfo
>
SAL_CALL
getPropertySetInfo
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
// XStatement
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XResultSet
>
SAL_CALL
executeQuery
(
const
OUString
&
sql
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
const
OUString
&
sql
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Int32
SAL_CALL
executeUpdate
(
const
OUString
&
sql
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
const
OUString
&
sql
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
execute
(
const
OUString
&
sql
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
const
OUString
&
sql
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XConnection
>
SAL_CALL
getConnection
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
// XWarningsSupplier
virtual
::
com
::
sun
::
star
::
uno
::
Any
SAL_CALL
getWarnings
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
clearWarnings
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
// XCancellable
virtual
void
SAL_CALL
cancel
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
// XCloseable
virtual
void
SAL_CALL
close
(
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
// other methods
inline
MacabConnection
*
getOwnConnection
()
const
{
return
m_pConnection
;
}
...
...
connectivity/source/drivers/macab/MacabTable.hxx
Dosyayı görüntüle @
990f52cb
...
...
@@ -49,7 +49,7 @@ namespace connectivity
MacabConnection
*
getConnection
()
{
return
m_pConnection
;}
virtual
void
refreshColumns
();
virtual
void
refreshColumns
()
SAL_OVERRIDE
;
OUString
getTableName
()
const
{
return
m_Name
;
}
OUString
getSchema
()
const
{
return
m_SchemaName
;
}
...
...
connectivity/source/drivers/macab/MacabTables.hxx
Dosyayı görüntüle @
990f52cb
...
...
@@ -32,8 +32,8 @@ namespace connectivity
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
sdbc
::
XDatabaseMetaData
>
m_xMetaData
;
protected
:
virtual
sdbcx
::
ObjectType
createObject
(
const
OUString
&
_rName
);
virtual
void
impl_refresh
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sdbcx
::
ObjectType
createObject
(
const
OUString
&
_rName
)
SAL_OVERRIDE
;
virtual
void
impl_refresh
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
public
:
MacabTables
(
...
...
@@ -45,7 +45,7 @@ namespace connectivity
m_xMetaData
(
_rMetaData
)
{
}
virtual
void
SAL_CALL
disposing
(
void
);
virtual
void
SAL_CALL
disposing
(
void
)
SAL_OVERRIDE
;
};
}
}
...
...
connectivity/source/drivers/macab/macabcondition.hxx
Dosyayı görüntüle @
990f52cb
...
...
@@ -47,9 +47,9 @@ class MacabConditionConstant : public MacabCondition
public
:
MacabConditionConstant
(
const
sal_Bool
bValue
);
virtual
sal_Bool
isAlwaysTrue
()
const
;
virtual
sal_Bool
isAlwaysFalse
()
const
;
virtual
sal_Bool
eval
(
const
MacabRecord
*
aRecord
)
const
;
virtual
sal_Bool
isAlwaysTrue
()
const
SAL_OVERRIDE
;
virtual
sal_Bool
isAlwaysFalse
()
const
SAL_OVERRIDE
;
virtual
sal_Bool
eval
(
const
MacabRecord
*
aRecord
)
const
SAL_OVERRIDE
;
};
class
MacabConditionColumn
:
public
MacabCondition
...
...
@@ -61,8 +61,8 @@ class MacabConditionColumn : public MacabCondition
MacabConditionColumn
(
const
MacabHeader
*
header
,
const
OUString
&
sColumnName
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
);
virtual
sal_Bool
isAlwaysTrue
()
const
;
virtual
sal_Bool
isAlwaysFalse
()
const
;
virtual
sal_Bool
isAlwaysTrue
()
const
SAL_OVERRIDE
;
virtual
sal_Bool
isAlwaysFalse
()
const
SAL_OVERRIDE
;
};
class
MacabConditionNull
:
public
MacabConditionColumn
...
...
@@ -71,7 +71,7 @@ class MacabConditionNull : public MacabConditionColumn
MacabConditionNull
(
const
MacabHeader
*
header
,
const
OUString
&
sColumnName
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
);
virtual
sal_Bool
eval
(
const
MacabRecord
*
aRecord
)
const
;
virtual
sal_Bool
eval
(
const
MacabRecord
*
aRecord
)
const
SAL_OVERRIDE
;
};
class
MacabConditionNotNull
:
public
MacabConditionColumn
...
...
@@ -80,7 +80,7 @@ class MacabConditionNotNull : public MacabConditionColumn
MacabConditionNotNull
(
const
MacabHeader
*
header
,
const
OUString
&
sColumnName
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
);
virtual
sal_Bool
eval
(
const
MacabRecord
*
aRecord
)
const
;
virtual
sal_Bool
eval
(
const
MacabRecord
*
aRecord
)
const
SAL_OVERRIDE
;
};
class
MacabConditionCompare
:
public
MacabConditionColumn
...
...
@@ -102,7 +102,7 @@ class MacabConditionEqual : public MacabConditionCompare
const
MacabHeader
*
header
,
const
OUString
&
sColumnName
,
const
OUString
&
sMatchString
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
);
virtual
sal_Bool
eval
(
const
MacabRecord
*
aRecord
)
const
;
virtual
sal_Bool
eval
(
const
MacabRecord
*
aRecord
)
const
SAL_OVERRIDE
;
};
class
MacabConditionDifferent
:
public
MacabConditionCompare
...
...
@@ -112,7 +112,7 @@ class MacabConditionDifferent : public MacabConditionCompare
const
MacabHeader
*
header
,
const
OUString
&
sColumnName
,
const
OUString
&
sMatchString
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
);
virtual
sal_Bool
eval
(
const
MacabRecord
*
aRecord
)
const
;
virtual
sal_Bool
eval
(
const
MacabRecord
*
aRecord
)
const
SAL_OVERRIDE
;
};
class
MacabConditionSimilar
:
public
MacabConditionCompare
...
...
@@ -122,7 +122,7 @@ class MacabConditionSimilar : public MacabConditionCompare
const
MacabHeader
*
header
,
const
OUString
&
sColumnName
,
const
OUString
&
sMatchString
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
);
virtual
sal_Bool
eval
(
const
MacabRecord
*
aRecord
)
const
;
virtual
sal_Bool
eval
(
const
MacabRecord
*
aRecord
)
const
SAL_OVERRIDE
;
};
class
MacabConditionBoolean
:
public
MacabCondition
...
...
@@ -139,18 +139,18 @@ class MacabConditionOr : public MacabConditionBoolean
{
public
:
MacabConditionOr
(
MacabCondition
*
pLeft
,
MacabCondition
*
pRight
);
virtual
sal_Bool
isAlwaysTrue
()
const
;
virtual
sal_Bool
isAlwaysFalse
()
const
;
virtual
sal_Bool
eval
(
const
MacabRecord
*
aRecord
)
const
;
virtual
sal_Bool
isAlwaysTrue
()
const
SAL_OVERRIDE
;
virtual
sal_Bool
isAlwaysFalse
()
const
SAL_OVERRIDE
;
virtual
sal_Bool
eval
(
const
MacabRecord
*
aRecord
)
const
SAL_OVERRIDE
;
};
class
MacabConditionAnd
:
public
MacabConditionBoolean
{
public
:
MacabConditionAnd
(
MacabCondition
*
pLeft
,
MacabCondition
*
pRight
);
virtual
sal_Bool
isAlwaysTrue
()
const
;
virtual
sal_Bool
isAlwaysFalse
()
const
;
virtual
sal_Bool
eval
(
const
MacabRecord
*
aRecord
)
const
;
virtual
sal_Bool
isAlwaysTrue
()
const
SAL_OVERRIDE
;
virtual
sal_Bool
isAlwaysFalse
()
const
SAL_OVERRIDE
;
virtual
sal_Bool
eval
(
const
MacabRecord
*
aRecord
)
const
SAL_OVERRIDE
;
};
}
...
...
connectivity/source/drivers/macab/macaborder.hxx
Dosyayı görüntüle @
990f52cb
...
...
@@ -46,7 +46,7 @@ namespace connectivity
public
:
MacabSimpleOrder
(
MacabHeader
*
header
,
OUString
&
sColumnName
,
sal_Bool
bAscending
);
virtual
sal_Int32
compare
(
const
MacabRecord
*
record1
,
const
MacabRecord
*
record2
)
const
;
virtual
sal_Int32
compare
(
const
MacabRecord
*
record1
,
const
MacabRecord
*
record2
)
const
SAL_OVERRIDE
;
};
class
MacabComplexOrder
:
public
MacabOrder
...
...
@@ -58,7 +58,7 @@ namespace connectivity
virtual
~
MacabComplexOrder
();
void
addOrder
(
MacabOrder
*
pOrder
);
virtual
sal_Int32
compare
(
const
MacabRecord
*
record1
,
const
MacabRecord
*
record2
)
const
;
virtual
sal_Int32
compare
(
const
MacabRecord
*
record1
,
const
MacabRecord
*
record2
)
const
SAL_OVERRIDE
;
};
}
}
...
...
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