Ignore:
Timestamp:
02/04/10 21:57:54 (2 years ago)
Author:
kasper
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • MetadataBeans/trunk/src/main/java/org/eobjects/metamodel/OpenOfficeDataContextStrategy.java

    r886 r888  
    4343        private Connection _connection; 
    4444 
    45         public OpenOfficeDataContextStrategy(File dbFile) throws MetaModelException { 
     45        public OpenOfficeDataContextStrategy(File dbFile) throws MetadataBeansException { 
    4646                try { 
    4747                        String databaseName = dbFile.getName(); 
     
    9090                                        JdbcDataContextFactory.DEFAULT_TABLE_TYPES, null); 
    9191                } catch (Exception e) { 
    92                         throw new MetaModelException(e); 
     92                        throw new MetadataBeansException(e); 
    9393                } 
    9494        } 
    9595 
    96         public DataSet executeQuery(Query query) throws MetaModelException { 
     96        public DataSet executeQuery(Query query) throws MetadataBeansException { 
    9797                return _strategy.executeQuery(query); 
    9898        } 
    9999 
    100         public String getDefaultSchemaName() throws MetaModelException { 
     100        public String getDefaultSchemaName() throws MetadataBeansException { 
    101101                return _strategy.getDefaultSchemaName(); 
    102102        } 
    103103 
    104         public Schema getSchemaByName(String name) throws MetaModelException { 
     104        public Schema getSchemaByName(String name) throws MetadataBeansException { 
    105105                return _strategy.getSchemaByName(name); 
    106106        } 
    107107 
    108         public String[] getSchemaNames() throws MetaModelException { 
     108        public String[] getSchemaNames() throws MetadataBeansException { 
    109109                return _strategy.getSchemaNames(); 
    110110        } 
Note: See TracChangeset for help on using the changeset viewer.