summaryrefslogtreecommitdiff
path: root/wizards/source/formwizard/DBMeta.xba
diff options
context:
space:
mode:
authorBehrend Cornelius <bc@openoffice.org>2001-07-12 07:13:52 +0000
committerBehrend Cornelius <bc@openoffice.org>2001-07-12 07:13:52 +0000
commit0488889272ac3357478aaee776d93906bdf4b1d1 (patch)
tree6433491a167313302e62786c269f06c40e354094 /wizards/source/formwizard/DBMeta.xba
parent50d6a3fe36b72df38c53ce224c8fd4aa6849ad9c (diff)
#88814# Connection disposed before establishing new one
Diffstat (limited to 'wizards/source/formwizard/DBMeta.xba')
-rw-r--r--wizards/source/formwizard/DBMeta.xba5
1 files changed, 2 insertions, 3 deletions
diff --git a/wizards/source/formwizard/DBMeta.xba b/wizards/source/formwizard/DBMeta.xba
index cea702286..e83240f90 100644
--- a/wizards/source/formwizard/DBMeta.xba
+++ b/wizards/source/formwizard/DBMeta.xba
@@ -92,7 +92,6 @@ End Function
Function GetDBMetaData()
If oDBContext.HasElements Then
- printdbgInfo oDBConnection
Tablenames() = oDBConnection.Tables.ElementNames()
Querynames() = oDBConnection.Queries.ElementNames()
GetDBMetaData = True
@@ -225,13 +224,13 @@ Dim i as Integer
Dim a as Integer
MaxTableIndex = Ubound(TableNames()
MaxQueryIndex = Ubound(QueryNames()
-Dim LocCommandTypes(MaxTableIndex + MaxQueryIndex + 1)
+Dim LocCommandTypes(MaxTableIndex + MaxQueryIndex + 1) as Integer
For i = 0 To MaxTableIndex
LocCommandTypes(i) = com.sun.star.sdb.CommandType.TABLE
Next i
a = i + 1
For i = 0 To MaxQueryIndex
- LocCommandTypes(a) = com.sun.star.sdb.CommandType.Query
+ LocCommandTypes(a) = com.sun.star.sdb.CommandType.QUERY
Next i
CreateCommandTypeList() = LocCommandTypes()
End Function</script:module> \ No newline at end of file