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
56ad57de
Kaydet (Commit)
56ad57de
authored
Agu 20, 2014
tarafından
Thomas Arnhold
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
starsdbc -> css::sdbc
Change-Id: Id0411425b0a3400dffe47143f908ab283fd2247e
üst
cb347ddc
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
11 additions
and
16 deletions
+11
-16
CallableStatement.cxx
connectivity/source/drivers/jdbc/CallableStatement.cxx
+0
-0
DriverPropertyInfo.cxx
connectivity/source/drivers/jdbc/DriverPropertyInfo.cxx
+2
-2
JConnection.cxx
connectivity/source/drivers/jdbc/JConnection.cxx
+1
-1
JStatement.cxx
connectivity/source/drivers/jdbc/JStatement.cxx
+1
-1
ResultSet.cxx
connectivity/source/drivers/jdbc/ResultSet.cxx
+1
-1
SQLException.cxx
connectivity/source/drivers/jdbc/SQLException.cxx
+4
-4
SQLException.hxx
connectivity/source/inc/java/sql/SQLException.hxx
+2
-4
SQLWarning.hxx
connectivity/source/inc/java/sql/SQLWarning.hxx
+0
-3
No files found.
connectivity/source/drivers/jdbc/CallableStatement.cxx
Dosyayı görüntüle @
56ad57de
This diff is collapsed.
Click to expand it.
connectivity/source/drivers/jdbc/DriverPropertyInfo.cxx
Dosyayı görüntüle @
56ad57de
...
...
@@ -48,9 +48,9 @@ jclass java_sql_DriverPropertyInfo::getMyClass() const
}
java_sql_DriverPropertyInfo
::
operator
star
sdbc
::
DriverPropertyInfo
()
java_sql_DriverPropertyInfo
::
operator
css
::
sdbc
::
DriverPropertyInfo
()
{
star
sdbc
::
DriverPropertyInfo
aInfo
;
css
::
sdbc
::
DriverPropertyInfo
aInfo
;
aInfo
.
Name
=
name
();
aInfo
.
Description
=
description
();
aInfo
.
IsRequired
=
required
();
...
...
connectivity/source/drivers/jdbc/JConnection.cxx
Dosyayı görüntüle @
56ad57de
...
...
@@ -572,7 +572,7 @@ Any SAL_CALL java_sql_Connection::getWarnings( ) throw(SQLException, RuntimeExc
if
(
out
)
{
java_sql_SQLWarning_BASE
warn_base
(
t
.
pEnv
,
out
);
SQLException
aAsException
(
static_cast
<
star
sdbc
::
SQLException
>
(
java_sql_SQLWarning
(
warn_base
,
*
this
)
)
);
SQLException
aAsException
(
static_cast
<
css
::
sdbc
::
SQLException
>
(
java_sql_SQLWarning
(
warn_base
,
*
this
)
)
);
// translate to warning
SQLWarning
aWarning
;
...
...
connectivity/source/drivers/jdbc/JStatement.cxx
Dosyayı görüntüle @
56ad57de
...
...
@@ -393,7 +393,7 @@ Any SAL_CALL java_sql_Statement_Base::getWarnings( ) throw(::com::sun::star::sd
{
java_sql_SQLWarning_BASE
warn_base
(
t
.
pEnv
,
out
);
return
makeAny
(
static_cast
<
star
sdbc
::
SQLException
>
(
static_cast
<
css
::
sdbc
::
SQLException
>
(
java_sql_SQLWarning
(
warn_base
,
*
(
::
cppu
::
OWeakObject
*
)
this
)));
}
...
...
connectivity/source/drivers/jdbc/ResultSet.cxx
Dosyayı görüntüle @
56ad57de
...
...
@@ -523,7 +523,7 @@ void SAL_CALL java_sql_ResultSet::clearWarnings( ) throw(::com::sun::star::sdbc
{
java_sql_SQLWarning_BASE
warn_base
(
t
.
pEnv
,
out
);
return
makeAny
(
static_cast
<
star
sdbc
::
SQLException
>
(
static_cast
<
css
::
sdbc
::
SQLException
>
(
java_sql_SQLWarning
(
warn_base
,
*
this
)));
}
...
...
connectivity/source/drivers/jdbc/SQLException.cxx
Dosyayı görüntüle @
56ad57de
...
...
@@ -30,7 +30,7 @@ using namespace ::com::sun::star::lang;
//************ Class: java.sql.SQLException
java_sql_SQLException
::
java_sql_SQLException
(
const
java_sql_SQLException_BASE
&
_rException
,
const
Reference
<
XInterface
>
&
_rContext
)
:
star
sdbc
::
SQLException
(
_rException
.
getMessage
(),
:
css
::
sdbc
::
SQLException
(
_rException
.
getMessage
(),
_rContext
,
_rException
.
getSQLState
(),
_rException
.
getErrorCode
(),
...
...
@@ -61,7 +61,7 @@ jclass java_sql_SQLException_BASE::st_getMyClass()
return
theClass
;
}
star
sdbc
::
SQLException
java_sql_SQLException_BASE
::
getNextException
()
const
css
::
sdbc
::
SQLException
java_sql_SQLException_BASE
::
getNextException
()
const
{
SDBThreadAttach
t
;
static
jmethodID
mID
(
NULL
);
...
...
@@ -70,10 +70,10 @@ starsdbc::SQLException java_sql_SQLException_BASE::getNextException() const
if
(
out
)
{
java_sql_SQLException_BASE
warn_base
(
t
.
pEnv
,
out
);
return
(
star
sdbc
::
SQLException
)
java_sql_SQLException
(
warn_base
,
0
);
return
(
css
::
sdbc
::
SQLException
)
java_sql_SQLException
(
warn_base
,
0
);
}
return
star
sdbc
::
SQLException
();
return
css
::
sdbc
::
SQLException
();
}
OUString
java_sql_SQLException_BASE
::
getSQLState
()
const
...
...
connectivity/source/inc/java/sql/SQLException.hxx
Dosyayı görüntüle @
56ad57de
...
...
@@ -24,12 +24,10 @@
namespace
connectivity
{
namespace
starsdbc
=
::
com
::
sun
::
star
::
sdbc
;
//************ Class: java.sql.SQLException
class
java_sql_SQLException_BASE
;
class
java_sql_SQLException
:
public
star
sdbc
::
SQLException
class
java_sql_SQLException
:
public
css
::
sdbc
::
SQLException
{
public
:
// A ctor that is needed for returning the object
...
...
@@ -50,7 +48,7 @@ namespace connectivity
OUString
getSQLState
()
const
;
sal_Int32
getErrorCode
()
const
;
star
sdbc
::
SQLException
getNextException
()
const
;
css
::
sdbc
::
SQLException
getNextException
()
const
;
static
jclass
st_getMyClass
();
};
...
...
connectivity/source/inc/java/sql/SQLWarning.hxx
Dosyayı görüntüle @
56ad57de
...
...
@@ -24,9 +24,6 @@
namespace
connectivity
{
// namespace starsdbc = ::com::sun::star::sdbc;
// namespace ::com::sun::star::uno = ::com::sun::star::uno;
//************ Class: java.sql.SQLWarning
class
java_sql_SQLWarning_BASE
:
public
java_sql_SQLException_BASE
...
...
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