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
783ec67d
Kaydet (Commit)
783ec67d
authored
May 27, 2003
tarafından
Vladimir Glazounov
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
INTEGRATION: CWS qadev6 (1.2.8); FILE MERGED
2003/05/21 10:55:39 sg 1.2.8.1: #109819# prepare devide of runner
üst
c40e3cb8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
10 deletions
+11
-10
OQueryDesign.java
qadevOOo/tests/java/mod/_dbaccess/OQueryDesign.java
+4
-3
ORowSet.java
qadevOOo/tests/java/mod/_dbaccess/ORowSet.java
+7
-7
No files found.
qadevOOo/tests/java/mod/_dbaccess/OQueryDesign.java
Dosyayı görüntüle @
783ec67d
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: OQueryDesign.java,v $
*
* $Revision: 1.
2
$
* $Revision: 1.
3
$
*
* last change:$Date: 2003-0
2-27 11:18:50
$
* last change:$Date: 2003-0
5-27 12:37:27
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -64,6 +64,7 @@ package mod._dbaccess;
//import com.sun.star.awt.XControl;
//import com.sun.star.awt.XControlModel;
import
com.sun.star.awt.XWindow
;
import
com.sun.star.lang.XMultiServiceFactory
;
import
com.sun.star.beans.PropertyValue
;
import
com.sun.star.frame.XDispatch
;
import
com.sun.star.frame.XDispatchProvider
;
...
...
@@ -108,7 +109,7 @@ public class OQueryDesign extends TestCase {
*/
protected
void
initialize
(
TestParameters
Param
,
PrintWriter
log
)
{
Desk
=
(
XDesktop
)
UnoRuntime
.
queryInterface
(
XDesktop
.
class
,
DesktopTools
.
createDesktop
(
Param
.
getMSF
())
);
XDesktop
.
class
,
DesktopTools
.
createDesktop
(
(
XMultiServiceFactory
)
Param
.
getMSF
())
);
}
protected
synchronized
TestEnvironment
createTestEnvironment
(
TestParameters
Param
,
PrintWriter
log
)
{
...
...
qadevOOo/tests/java/mod/_dbaccess/ORowSet.java
Dosyayı görüntüle @
783ec67d
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: ORowSet.java,v $
*
* $Revision: 1.
2
$
* $Revision: 1.
3
$
*
* last change:$Date: 2003-0
1-31 10:37:25
$
* last change:$Date: 2003-0
5-27 12:37:37
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -220,13 +220,13 @@ public class ORowSet extends TestCase {
this
.
log
=
log
;
tmpDir
=
(
String
)
Param
.
get
(
"TMPURL"
)
;
tmpDir
=
utils
.
getOfficeTemp
(
Param
.
getMSF
());
tmpDir
=
utils
.
getOfficeTemp
(
(
XMultiServiceFactory
)
Param
.
getMSF
());
/* origDB = (String) Param.get("DOCPTH") +
System.getProperty("file.separator") + "ORowSet.dbf" ;*/
origDB
=
util
.
utils
.
getFullTestDocName
(
"TestDB/testDB.dbf"
);
dbTools
=
new
DBTools
(
Param
.
getMSF
())
;
dbTools
=
new
DBTools
(
(
XMultiServiceFactory
)
Param
.
getMSF
())
;
// creating DataSource and registering it in DatabaseContext
String
dbURL
=
(
String
)
Param
.
get
(
"test.db.url"
);
...
...
@@ -342,8 +342,8 @@ public class ORowSet extends TestCase {
do
{
tableName
=
"ORowSet_tmp"
+
uniqueSuffix
;
oldF
=
utils
.
getFullURL
(
origDB
);
newF
=
utils
.
getOfficeTemp
(
Param
.
getMSF
())+
tableName
+
".dbf"
;
}
while
(!
utils
.
overwriteFile
(
Param
.
getMSF
(),
oldF
,
newF
)
&&
newF
=
utils
.
getOfficeTemp
(
(
XMultiServiceFactory
)
Param
.
getMSF
())+
tableName
+
".dbf"
;
}
while
(!
utils
.
overwriteFile
(
(
XMultiServiceFactory
)
Param
.
getMSF
(),
oldF
,
newF
)
&&
uniqueSuffix
++
<
50
);
}
...
...
@@ -351,7 +351,7 @@ public class ORowSet extends TestCase {
XConnection
connection
=
null
;
try
{
xMSF
=
Param
.
getMSF
();
xMSF
=
(
XMultiServiceFactory
)
Param
.
getMSF
();
Object
oRowSet
=
xMSF
.
createInstance
(
"com.sun.star.sdb.RowSet"
)
;
...
...
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