Board index » delphi » Existing tables in BDE connection against Oracle.

Existing tables in BDE connection against Oracle.

I have a weird problem. When doing a "drop table" in Oracle, the "Exists"
function in TTable does not work. You get "true" from the function even
though it is dropped. This way it bypasses my logic, and my program comes up
with errors.

Is there some way to get BDE (TTable) to understand that the table does not
exist anymore?

-Atle

 

Re:Existing tables in BDE connection against Oracle.


Yes, you have to reconnect. Or use TQuery instead of TTable.

Kevin reposts quite frequently a "TTable vs TQuery", IOW "why is it bad idea
to use TTable with SQL servers"

--
Robert

Quote
Atle Smelv?r wrote in message <3b406e95$1_1@dnews>...
>I have a weird problem. When doing a "drop table" in Oracle, the "Exists"
>function in TTable does not work. You get "true" from the function even
>though it is dropped. This way it bypasses my logic, and my program comes
up
>with errors.

>Is there some way to get BDE (TTable) to understand that the table does not
>exist anymore?

>-Atle

Other Threads