Subject Re: [IBO] TIB_Session
Author Helen Borrie
At 02:40 PM 23/04/2004 -0400, you wrote:
>Using D5, ibo 4.3.A,
>
>Converting an app from Paradox to IBO (currently using the TIBOxxx
>components). In the Paradox app I used a Session component for the
>Database and related files and the default session for the VCL.

I don't understand that.

>Is the TIB_Session used the same way?
>How are sessions managed using IBO?

The TIB_Session manages the entire session between the application and
database(s). You can have the default session or you can use an explicit
session. You can access the methods and properties of the default session
through a TIB_SessionProps object. Every IBO object has an IB_Session
property that refers to the session that it was created within.

You need to create an explicit session for self-contained session instances
that are created and destroyed by the application; and for ISAPI modules.

>I need to keep the db processing and VCL events separate.

Can you explain what you mean?

Helen