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
dbe66eaf
Kaydet (Commit)
dbe66eaf
authored
Nis 25, 2001
tarafından
Ocke Janssen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
initiliaze values with 0
üst
54945250
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
6 deletions
+10
-6
Awrapado.hxx
connectivity/source/inc/ado/Awrapado.hxx
+10
-6
No files found.
connectivity/source/inc/ado/Awrapado.hxx
Dosyayı görüntüle @
dbe66eaf
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: Awrapado.hxx,v $
*
* $Revision: 1.
4
$
* $Revision: 1.
5
$
*
* last change: $Author:
kz $ $Date: 2001-04-19 08:23:45
$
* last change: $Author:
oj $ $Date: 2001-04-25 06:12:01
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -136,7 +136,7 @@ namespace connectivity
inline
sal_Int32
GetCommandTimeout
()
const
{
sal_Int32
nRet
;
sal_Int32
nRet
=
0
;
pInterface
->
get_CommandTimeout
(
&
nRet
);
return
nRet
;
}
...
...
@@ -148,7 +148,7 @@ namespace connectivity
inline
sal_Int32
GetConnectionTimeout
()
const
{
sal_Int32
nRet
;
sal_Int32
nRet
=
0
;
pInterface
->
get_ConnectionTimeout
(
&
nRet
);
return
nRet
;
}
...
...
@@ -482,8 +482,12 @@ namespace connectivity
return
aBSTR
;
}
inline
sal_Int32
GetNumber
()
const
{
sal_Int32
nErrNr
;
pInterface
->
get_Number
(
&
nErrNr
);
return
nErrNr
;}
inline
sal_Int32
GetNumber
()
const
{
sal_Int32
nErrNr
=
0
;
pInterface
->
get_Number
(
&
nErrNr
);
return
nErrNr
;
}
inline
::
rtl
::
OUString
GetSQLState
()
const
{
...
...
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