public int deleteAllRows(XConnection con, String table)
throws com.sun.star.sdbc.SQLException {
XStatement stat = con.createStatement() ;
XResultSet set = stat.executeQuery("SELECT * FROM " + table) ;
XResultSetUpdate updt = (XResultSetUpdate) UnoRuntime.queryInterface
(XResultSetUpdate.class, set) ;
int count = 0 ;