No Hourglass cursor during queries
Posted: Mon 15 May 2006 15:38
- I use ODAC Net 5.70.0.28 in direct connect mode with BCB 6.0
- The problem I have is that no hourglass is displayed while executing queries.
- I've read the posts about this subject but nothing has solved my problem. For example I've tried :
"You need to add line #include "OdacVcl.hpp" to your unit.h file and line #pragma link "OdacVcl" to your unit.cpp file, then just build project. Also you can try our CBuilder demo project."
- When I start the ODAC BCB demo application, the hourglass appears fine.
- But in my case I not have a single exe. I have 200 bpls and 45 applications.
When I create a Query I do :
FQuery = new TOraQuery(NULL);
FQuery->UniDirectional = true;
FQuery->Session = FSession;
FQuery->FetchRows = FFetchBufferSize;
I do not use ODAC VCL components bu dropping them on a form, I create all objects dynamically (a TOraQuey and a TOraSession).
- The problem I have is that no hourglass is displayed while executing queries.
- I've read the posts about this subject but nothing has solved my problem. For example I've tried :
"You need to add line #include "OdacVcl.hpp" to your unit.h file and line #pragma link "OdacVcl" to your unit.cpp file, then just build project. Also you can try our CBuilder demo project."
- When I start the ODAC BCB demo application, the hourglass appears fine.
- But in my case I not have a single exe. I have 200 bpls and 45 applications.
When I create a Query I do :
FQuery = new TOraQuery(NULL);
FQuery->UniDirectional = true;
FQuery->Session = FSession;
FQuery->FetchRows = FFetchBufferSize;
I do not use ODAC VCL components bu dropping them on a form, I create all objects dynamically (a TOraQuey and a TOraSession).