Examples of XElementAccess


Examples of com.sun.star.container.XElementAccess

    }
   

    public String[] getDBMetaData(){
        try{
            XElementAccess xDBElements = (XElementAccess) UnoRuntime.queryInterface(XElementAccess.class, xDatabaseContext);
            if (xDBElements.hasElements()){
                XTablesSupplier xDBTables = (XTablesSupplier) UnoRuntime.queryInterface(XTablesSupplier.class, DBConnection);
    xDBMetaData = DBConnection.getMetaData();
//    CurDBMetaData.bGroupByIsSupported = xDBMetaData.supportsGroupBy();
                xTableNames = (XNameAccess) xDBTables.getTables();
                TableNames = (String[]) xTableNames.getElementNames();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.