-
Is it possible to store a cache copy of the table data locally to avoid transfer (data does not change, This I assure it!) in
SQL Server. SoC++, C#can know the data stored by SQL in cache and then read the data in cache and compute some things with the table? -
Is it possible this kind of communication between
SQL Server and C++ or C#via cache memory copy of table data?- If this is possible, What would be the steps?
Is it possible to store a cache copy of the table data locally to
Share
ADO.You need to use ADO.NET (Disconnected) DataSets:
1) Create a Dataset
2) Create a DataAdapter, specifying what data to get
3) Fill the Dataset
After which you can Query your Dataset.