Uses of Class
org.apache.ddlutils.DdlUtilsException

Packages that use DdlUtilsException
org.apache.ddlutils This package mainly contains the database platform abstraction, Platform and the factory to create instances for individual platforms, PlatformFactory
org.apache.ddlutils.dynabean Provides the special DdlUtils implementations of DynaClass and DynaBean that directly map to tables in the database model. 
org.apache.ddlutils.io The org.apache.ddlutils.io package contains a classes for input and output of both the database schemas and data files. 
org.apache.ddlutils.model This package contains the classes making up the database model. 
org.apache.ddlutils.util The org.apache.ddlutils.util package contains utility classes of DdlUtils. 
 

Uses of DdlUtilsException in org.apache.ddlutils
 

Subclasses of DdlUtilsException in org.apache.ddlutils
 class DatabaseOperationException
          This exception is thrown when a database operation failed.
 

Methods in org.apache.ddlutils that throw DdlUtilsException
static Platform PlatformFactory.createNewPlatformInstance(javax.sql.DataSource dataSource)
          Creates a new platform for the specified database.
static Platform PlatformFactory.createNewPlatformInstance(javax.sql.DataSource dataSource, java.lang.String username, java.lang.String password)
          Creates a new platform for the specified database.
static Platform PlatformFactory.createNewPlatformInstance(java.lang.String databaseName)
          Creates a new platform for the given (case insensitive) database name or returns null if the database is not recognized.
static Platform PlatformFactory.createNewPlatformInstance(java.lang.String jdbcDriver, java.lang.String jdbcConnectionUrl)
          Creates a new platform for the specified database.
 

Uses of DdlUtilsException in org.apache.ddlutils.dynabean
 

Subclasses of DdlUtilsException in org.apache.ddlutils.dynabean
 class SqlDynaException
          This exception is thrown when something dealing with sql dyna beans or classes failed.
 

Uses of DdlUtilsException in org.apache.ddlutils.io
 

Methods in org.apache.ddlutils.io that throw DdlUtilsException
 DataReader DatabaseDataIO.getConfiguredDataReader(Platform platform, Database model)
          Returns a data reader instance configured for the given platform (which needs to be connected to a live database) and model.
 DataWriter DatabaseDataIO.getConfiguredDataWriter(java.io.OutputStream output, java.lang.String xmlEncoding)
          Returns a data writer instance configured to write to the given output stream in the specified encoding.
 DataWriter DatabaseDataIO.getConfiguredDataWriter(java.lang.String path, java.lang.String xmlEncoding)
          Returns a data writer instance configured to write to the indicated file in the specified encoding.
 DataWriter DatabaseDataIO.getConfiguredDataWriter(java.io.Writer output, java.lang.String xmlEncoding)
          Returns a data writer instance configured to write to the given output writer in the specified encoding.
protected  org.apache.commons.betwixt.io.BeanWriter DatabaseIO.getWriter(java.io.Writer output)
          Returns a new bean writer configured to writer database models.
 Database DatabaseIO.read(java.io.File file)
          Reads the database model contained in the specified file.
 Database DatabaseIO.read(org.xml.sax.InputSource source)
          Reads the database model from the given input source.
 Database DatabaseIO.read(java.io.Reader reader)
          Reads the database model given by the reader.
 Database DatabaseIO.read(java.lang.String filename)
          Reads the database model contained in the specified file.
 void DatabaseIO.write(Database model, java.io.OutputStream output)
          Writes the database model to the given output stream.
 void DatabaseIO.write(Database model, java.lang.String filename)
          Writes the database model to the specified file.
 void DatabaseIO.write(Database model, java.io.Writer output)
          Writes the database model to the given output writer.
 void DatabaseDataIO.writeDataToDatabase(DataReader dataReader, java.io.InputStream input)
          Reads the data from the given input stream and writes it to the database via the given data reader.
 void DatabaseDataIO.writeDataToDatabase(DataReader dataReader, java.io.InputStream[] inputs)
          Reads the data from the given input stream and writes it to the database via the given data reader.
 void DatabaseDataIO.writeDataToDatabase(DataReader dataReader, java.io.Reader input)
          Reads the data from the given input stream and writes it to the database via the given data reader.
 void DatabaseDataIO.writeDataToDatabase(DataReader dataReader, java.io.Reader[] inputs)
          Reads the data from the given input stream and writes it to the database via the given data reader.
 void DatabaseDataIO.writeDataToDatabase(DataReader dataReader, java.lang.String path)
          Reads the data from the indicated XML file and writes it to the database via the given data reader.
 void DatabaseDataIO.writeDataToDatabase(DataReader dataReader, java.lang.String[] files)
          Reads the data from the specified files and writes it to the database via the given data reader.
 void DatabaseDataIO.writeDataToDatabase(Platform platform, Database model, java.io.InputStream[] inputs)
          Reads the data from the given input streams and writes it to the database to which the given platform is connected.
 void DatabaseDataIO.writeDataToDatabase(Platform platform, Database model, java.io.Reader[] inputs)
          Reads the data from the given input readers and writes it to the database to which the given platform is connected.
 void DatabaseDataIO.writeDataToDatabase(Platform platform, Database model, java.lang.String[] files)
          Reads the data from the indicated files and writes it to the database to which the given platform is connected.
 void DatabaseDataIO.writeDataToDatabase(Platform platform, java.io.InputStream[] inputs)
          Reads the data from the given input streams and writes it to the database to which the given platform is connected.
 void DatabaseDataIO.writeDataToDatabase(Platform platform, java.io.Reader[] inputs)
          Reads the data from the given input readers and writes it to the database to which the given platform is connected.
 void DatabaseDataIO.writeDataToDatabase(Platform platform, java.lang.String[] files)
          Reads the data from the specified files and writes it to the database to which the given platform is connected.
 void DatabaseDataIO.writeDataToXML(Platform platform, java.lang.String path, java.lang.String xmlEncoding)
          Writes the data contained in the database to which the given platform is connected, as XML to the given output stream (which won't be closed by this method).
 

Uses of DdlUtilsException in org.apache.ddlutils.model
 

Subclasses of DdlUtilsException in org.apache.ddlutils.model
 class ModelException
          Indicates a model error.
 

Uses of DdlUtilsException in org.apache.ddlutils.util
 

Methods in org.apache.ddlutils.util that throw DdlUtilsException
 void CallbackClosure.execute(java.lang.Object obj)
          
 



Copyright © 2005-2009 Apache Software Foundation. All Rights Reserved.