GEAS::TransactionFactory
========================

General Notes:
--------------
Transactions have not been implemented yet, but the framework has been
implemented, and thus transaction support will be possible in the future,
using this API which is based on the ODMG standard.


Parents:
--------
None


Attributes:
-----------
None


Methods:
--------

Name:
    new

Synopsis:
    Transaction new();

Description:
    Creates a new Transaction object for a client to use. The transaction
will be made the 'current' transaction, but will not be opened.

Arguments:
    None

Result:
    A new transaction object, that is initially closed.

Exceptions:
    None

Example:

See Also:


Name:
    current

Synopsis:
    Transaction current();

Description:
    This returns the currently active transaction for the user, or the NULL
object, if there is no transaction.

Arguments:
    None

Result:
    The currently active transaction.

Exceptions:
    None

Example:

See Also:

