Hi,
How I can disable change cursor when executing OraSQL or another Ora components?
How I can disable change cursor?
Re: How I can disable change cursor?
I have this in my mainform create event:
// Tell ODAC not to change the cursor.
DBAccess.ChangeCursor := False;
I hope that helps!
// Tell ODAC not to change the cursor.
DBAccess.ChangeCursor := False;
I hope that helps!
Re: How I can disable change cursor?
Hello,
Besides setting the ChangeCursor global variable to False, to avoid the cursor change when opening a DataSet, you can also delete the OdacVcl module from the uses section.
Besides setting the ChangeCursor global variable to False, to avoid the cursor change when opening a DataSet, you can also delete the OdacVcl module from the uses section.