hello!
The version I am using is 5.0.1.480
How do I mail my code in? I don't see a way to attach files.
Thanks for looking into this. It has been very frustrating.
Gary
Help!
When I compile a function or package the status bar says there are errors. However, the errors are not shown in a window below the code as the help file would suggest. What do I need to do to display the compiler messages?
Thanks in advance!
Gary
Marco, thanks for your reply - but let me make sure I understand. Consider the following code:
function TQCWebMod.GetUserName(const UserID: string): string;
begin
try
OracleQuery1.SetVariable('THEUSER', UserID);
OracleQuery1.Execute;
Result := OracleQuery1.Field('USER_NAME')...
Greetings!
Sometimes when executing a query using the TOracleQuery I get an exception raised and the message is 'You cannot access field data beyond Eof'. The query seems to work OK, but I would to know what this exception means, and why it is happening. Can anyone help???
TIA - Gary
Thanks for your help Marco!
Is there a preferred way or time to use the CheckConnection method? Do I need to check before every query?
Thanks Again - Gary
Greetings!
I am using DOA components in an ISAPI dll to access several Oracle databases. I sometimes get ORA-03113-end of file on communication channel and ORA-03114-not connected to Oracle errors if one of the servers I am accessing goes down. I have to reboot my server in order to...