Hello, I'm examining UniDAC and have a couple of questions about TUniQuery.
1) TADOQuery has a property ExecuteOptions which is a set of eoAsyncExecute, eoAsyncFetch, eoAsyncFetchNonBlocking, eoExecuteNoRecords. Does TUniQuery support similar functionality for asynchronous execution? If it does, then how can I turn these options on and off?
2) TADOQuery also does have a property CursorLocation which can be set to client side or server side. What is the analogous property of TUniQuery?
Is there any functionality of TADOQuery which TUniQuery doesn't have support of?
Thanks in advance.
Asynchronous queries in UniDAC
-
AndreyZ
Hello,
1) UniDAC doesn't have equivalent for the ExecuteOptions property in ADO, but you can use the FetchAll and NonBlocking properties to obtain similar functionality.
2) UniDAC doesn't have any equivalent for the CursorLocation property, because the location of a cursor is defined by its name. If you want to work with cursors, you should use specific components, for example, SQL Server Data Access Components. There is the CursorType property in the TCustomMSDataSet components.
1) UniDAC doesn't have equivalent for the ExecuteOptions property in ADO, but you can use the FetchAll and NonBlocking properties to obtain similar functionality.
2) UniDAC doesn't have any equivalent for the CursorLocation property, because the location of a cursor is defined by its name. If you want to work with cursors, you should use specific components, for example, SQL Server Data Access Components. There is the CursorType property in the TCustomMSDataSet components.
-
AndreyZ