Documentation for classes includes syntax, usage information, and code samples for methods, properties, and event handlers and listeners for those APIs that belong to a specific class in ActionScript. The classes are listed alphabetically. If you are not sure to which class a certain method or property belongs, you can look it up in the Index.


 ClassPackageDescription
 AbstractAsynchronousSQLDAO
com.ericfeminella.sql.dao AbstractAsynchronousSQLDAO provides an abstraction of an asynchronous SQL DAO implementation.
 AbstractSQLDAO
com.ericfeminella.sql.dao AbstractSQLDAO provides default abstract functionality which is common amongst all SQLDAO implementations
 AbstractSynchronizedSQLDAO
com.ericfeminella.sql.dao AbstractSynchronizedSQLDAO provides an abstraction of a synchronized DAO SQL implementation.
 ISQLStatementCache
com.ericfeminella.sql ISQLStatementCache provides a marker interface implementation which is intended to indicate that implementing classes serve as a repository of uniquely defined SQLStatement instances which are to be reused throughout the lifetime of an application.
 PreparedStatement
com.ericfeminella.sql PreparedStatement provides a SQLStatement implementation which enforces the text property of a statement to be sealed, that is it can only be assigned during creation of the statement.
 PreparedStatementException
com.ericfeminella.sql A PreparedStatementException is thrown when an attempt is made to assign a value to a PreparedStatement.text property
 SQLConnectionHelper
com.ericfeminella.sql.utils SQLConnectionHelper is an all static class which provides a centralized location from which all SQLConnection instances can be managed and retrieved.
 SQLStatementExecutionException
com.ericfeminella.sql A SQLStatementExecutionException is thrown when an attempt is made to invoke execute on a SQLStatement which fails or will result in the execution failing due to the state of the statement.
 SQLStatementHelper
com.ericfeminella.sql.utils SQLStatementHelper is an all static utility class which provides a mechanism for substituting unnamed tokens specified in a raw statement with an arbitrary length of values.
 UnmanagedSQLConnectionException
com.ericfeminella.sql.utils An UnmanagedSQLConnectionException is thrown when an attempt is made to close a SQLConnection which is not being managed by the SQLStatementHelper