The "/qldt/0.9.10" file could not be found or is not available. Please select another file.

Qore is a scripting language supporting threading and embedded logic, designed for applying a flexible scripting-based approach to enterprise interface development but is also useful as a general purpose language.

-------------
Version 1.0.4
-------------

updated date/time APIs to for qore 0.8.0 release
when compiled with qore 0.8.0:
* MDateTime values are serialized (Qore DateTimeNode -> MDateTime) with UTC
  time directly, the SDK is not used to convert from local time, because the
  calling context may have a different idea of local time than the TIBCO SDK
* MDateTime values are deserialized (MDateTime -> Qore DateTimeNode) using
  UTC time as given in the native data format and tagged with the local time
  zone of the caller
* MTime values are serialized and deserialized with local time
* microseconds are preserved wherever possible (MTime, MDateTime conversions)

Qore's internal absolute date/time value representation (DateTimeNode) now
matches TIBCO's much closer and conversions generally either do not require
any calculations or require very simple calculations (i.e. they are faster)


-------------
Version 1.0.3
-------------

fixed memory leaks in TibcoAdapter::sendSubjectWithSyncReply() when an error
occurs creating the MPublisher

fixed other memory leaks in exception handling in TIBCO message processing by
using std::auto_ptr to handle memory deallocations automatically


-------------
Version 1.0.2
-------------

updated configure to check the directory specified with --prefix first when
looking for dependent libraries


-------------
Version 1.0.1
-------------

fixed module naming and module directory handling to correspond to changes in
qore 0.7.1

made qore 0.7.1 the minimum version for compiling the module


-----------
Version 1.0
-----------

Initial release; see README for more information


----------
Qore 0.6.2
----------

the tibae module (TIBCO ActiveEnterprise/Adapters(TM) module) now can deal
with interval, time, and binary types.  Milliseconds are now preserved with
datetime and time when sending and receiving.

the tibae_type() function has been added to allow control over how types are
serialized (useful with the "any" type or to override default serialization).
New constants have been added to the Tibae namespace for use with the
tibae_type() function:
        TIBAE_BINARY
        TIBAE_BOOLEAN
        TIBAE_BYTE
        TIBAE_CHAR
        TIBAE_DATE
        TIBAE_DATETIME
        TIBAE_FIXED
        TIBAE_I1
        TIBAE_I2
        TIBAE_I4
        TIBAE_I8
        TIBAE_INTERVAL
        TIBAE_R4
        TIBAE_R8
        TIBAE_STRING
        TIBAE_TIME
        TIBAE_U1
        TIBAE_U2
        TIBAE_U4
        TIBAE_U8


----------
Qore 0.6.0
----------

The "tibae" module added new methods to the TibcoAdapter class to support
client-side synchronous operation calls


----------
Qore 0.5.3
----------

the "tibco" module was renamed "tibae" to be consistent with the new "tibrv"
module
programs requiring the old "tibco" module should now use "%requires tibae"