Link virtual table

Discussion of open issues, suggestions and bugs regarding SDAC (SQL Server Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
Sawlmgsj
Posts: 35
Joined: Thu 11 Nov 2004 08:35

Link virtual table

Post by Sawlmgsj » Tue 11 Jul 2006 11:00

Is it possible to link a virtual table with a table in my SQL database?
If so how do I use the components?

Thanks,
Steve.

Antaeus
Posts: 2098
Joined: Tue 14 Feb 2006 10:14

Post by Antaeus » Tue 11 Jul 2006 14:56

VirtualTable component doesn't allow you to connect to the database directly, but you can request data from the server using one of our DAC products (SDAC, ODAC, MyDAC, IBDAC) and assign the data to VirtualTable:

Code: Select all

MSQuery.Open;
VirtualTable.Assign(MSQuery);
VirtualTable.Open;
After these operations you can work with data that VirtualTable already stores independently of the connection to the server.

Post Reply