Cosa c'è di sbagliato nel codice che riporto integralmente (copia/incolla)?
Grazie.
Codice: Seleziona tutto
REM Use "Option Compatible", or you can not use a default argument.
Sub CreateBinaryDB (Optional dbURL$ = "", Optional bVerbose = False)
Dim oDBContext 'DatabaseContext service.
Dim oDB 'Database data source.
REM No URL Specified, get one.
If dbURL = "" Then dbURL = ChooseAFile(OOoBaseFilters(), False)
REM Still No URL Specified, exit.
If dbURL = "" Then Exit Sub
If FileExists(dbURL) Then
If bVerbose Then Print "The file already exists."
Else
If bVerbose Then Print "Creating " & dbURL
oDBContext = createUnoService( "com.sun.star.sdb.DatabaseContext" )
oDB = oDBContext.createInstance()
oDB.URL = "sdbc:embedded:hsqldb"
oDB.DatabaseDocument.storeAsURL(dbURL, Array())
End If
End Sub