TOraScript - Access violation
Posted: Mon 26 Sep 2005 19:43
Hi,
Delphi 5, Oracle 9.2 (Client / Server), ODAC 5.55.1.22
I´m using TOraScript to compile a set of procedures from disk:
Only the first procedure is compiled successfully, on the second one, I receive a Access violation error.
Is there anything missing?
Thanks.
Delphi 5, Oracle 9.2 (Client / Server), ODAC 5.55.1.22
I´m using TOraScript to compile a set of procedures from disk:
Code: Select all
FindFirst('*.sql', faAnyFile, sr);
repeat
OraScript1.Lines.LoadFromFile(sr.Name);
OraScript1.Execute;
until (FindNext(sr) 0);
FindClose(sr);
Is there anything missing?
Thanks.