Uses of Class
edu.internet2.middleware.grouper.ext.org.apache.ddlutils.DdlUtilsException
Packages that use DdlUtilsException
Package
Description
This package mainly contains the database platform abstraction,
org.apache.ddlutils.Platform
and the factory to create instances for individual platforms,
org.apache.ddlutils.PlatformFactory
.
Provides the special DdlUtils implementations of
DynaClass
and DynaBean
that directly map to tables in the database
model.
The
org.apache.ddlutils.io
package contains a classes for input
and output of both the database schemas and data files.
This package contains the classes making up the database model.
The
org.apache.ddlutils.util
package contains utility classes of DdlUtils.-
Uses of DdlUtilsException in edu.internet2.middleware.grouper.ext.org.apache.ddlutils
Modifier and TypeClassDescriptionclass
This exception is thrown when a database operation failed.Methods in edu.internet2.middleware.grouper.ext.org.apache.ddlutils that throw DdlUtilsExceptionModifier and TypeMethodDescriptionstatic Platform
PlatformFactory.createNewPlatformInstance
(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
(String jdbcDriver, String jdbcConnectionUrl) Creates a new platform for the specified database.static Platform
PlatformFactory.createNewPlatformInstance
(DataSource dataSource) Creates a new platform for the specified database.static Platform
PlatformFactory.createNewPlatformInstance
(DataSource dataSource, String username, String password) Creates a new platform for the specified database. -
Uses of DdlUtilsException in edu.internet2.middleware.grouper.ext.org.apache.ddlutils.dynabean
Subclasses of DdlUtilsException in edu.internet2.middleware.grouper.ext.org.apache.ddlutils.dynabeanModifier and TypeClassDescriptionclass
This exception is thrown when something dealing with sql dyna beans or classes failed. -
Uses of DdlUtilsException in edu.internet2.middleware.grouper.ext.org.apache.ddlutils.io
Methods in edu.internet2.middleware.grouper.ext.org.apache.ddlutils.io that throw DdlUtilsExceptionModifier and TypeMethodDescriptionDatabaseDataIO.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.DatabaseDataIO.getConfiguredDataWriter
(OutputStream output, String xmlEncoding) Returns a data writer instance configured to write to the given output stream in the specified encoding.DatabaseDataIO.getConfiguredDataWriter
(Writer output, String xmlEncoding) Returns a data writer instance configured to write to the given output writer in the specified encoding.DatabaseDataIO.getConfiguredDataWriter
(String path, String xmlEncoding) Returns a data writer instance configured to write to the indicated file in the specified encoding.void
DatabaseDataIO.writeDataToDatabase
(DataReader dataReader, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, String path, 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 edu.internet2.middleware.grouper.ext.org.apache.ddlutils.model
-
Uses of DdlUtilsException in edu.internet2.middleware.grouper.ext.org.apache.ddlutils.util
Methods in edu.internet2.middleware.grouper.ext.org.apache.ddlutils.util that throw DdlUtilsException