To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=59048





------- Additional comments from [EMAIL PROTECTED] Thu Feb  9 02:16:41 -0800 
2006 -------
Hello,

I could solve my problem by replacing  g) Dispose DataSource
(dataSource.dispose()) through:
1. Close office database document:

XOfficeDatabaseDocument xOfficeDatabaseDocument = ( (XDocumentDataSource)
UnoRuntime.queryInterface( XDocumentDataSource.class, dataSource )
).getDatabaseDocument();

XModel xModel = (XModel) UnoRuntime.queryInterface( XModel.class,
xOfficeDatabaseDocument );

XCloseable xCloseable = (XCloseable) UnoRuntime.queryInterface(
XCloseable.class, xModel );
xCloseable.close( true );

2. Dispose dataSource: dataSource.dispose()

Step 1. seems to be necessary to solve the problem.

Greetings, frank

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to