com.googlecode.jdbw.metadata
Interface MetaDataFactory

All Known Implementing Classes:
DefaultMetaDataFactory

public interface MetaDataFactory

A factory interface to be implemented by database servers to customize how and which meta data objects are constructed. This enables certain database services to give out specialized subclasses of the common meta data objects instead of the default implementation, if they need to override some particular behavior.

Author:
Martin Berglund

Method Summary
 Catalog createCatalog(String catalogName)
           
 Schema createSchema(Catalog catalog, String schemaName)
           
 Table createTable(Schema schema, String tableName)
           
 

Method Detail

createCatalog

Catalog createCatalog(String catalogName)

createSchema

Schema createSchema(Catalog catalog,
                    String schemaName)

createTable

Table createTable(Schema schema,
                  String tableName)


Copyright © 2012. All Rights Reserved.