Subject Re: [IBO] Intraweb and IBO
Author Helen Borrie
At 01:08 PM 27/08/2003 +0000, you wrote:
>Good morning!
>
>I developed a project with Intraweb of Delphi 7 and with IBO /
>Firebird
>
>I debugged the whole application Stand Alone and everything worked
>correctly, I created a TIBODabase in Datamodule of Intraweb with a
>TIB_Session and I changed the creation order placing first
>TIB_Session and later TIBODabase.

Did you actually test it outside the IDE?

>
>After to do everything and to consider the ready application I did
>convert the application for a ISAPI/DLL for windows and did I test
>in IIS of Windows and do I always receive the message that it was
>not found the database, what can be happening wrong?

1. Most likely your code fails to connect to the database. What is the
StoreActive setting on the TIB_Session? Not that it is recommended to use
this. It's only there for design-time convenience. Properly, you should
wake up the connection, queries and transactions in code.
3. Make sure you use LOCALHOST for the Server property and select cpTCP/IP
for the protocol. Local connection won't multi-thread safely.

Helen