I am fetching some data inside of a thread. On the other hand, I'd like to make this data available from within a ADO compatible dataset. In other words, suppose I execute a TADODataSet from within this thread, I need to somehow represent that exact data on the outside of the thread. I already know you can't simply pass any ADO components through a thread, that's not what I'm trying to do. But I do need to somehow transfer this dataset from within the thread and expose it to the outside of the thread in an ADO compatible format.
Doing a loop and reading the dataset and all is very possible, I can create a custom dataset even. But that's not what I want to do; I need a real dataset which i can attach a data source to. There might be data-aware controls which need to access this dataset.
Arrggghhh, ADO and Threads aren't that good of friends, are they?
JD Solutions
Doing a loop and reading the dataset and all is very possible, I can create a custom dataset even. But that's not what I want to do; I need a real dataset which i can attach a data source to. There might be data-aware controls which need to access this dataset.
Arrggghhh, ADO and Threads aren't that good of friends, are they?
JD Solutions