I would like to get live data from our SQL server. I know that we can use ODBC for this but I would like to know if that is the recomended way to connect both databases these days.
It's the easiest way, since you can use linked tables.
You can connect to SQL Server directly with ADO, but you have to write code for that. Without linked tables you would not be able to use data binding by simply setting properties of the forms and controls (you can write code to open an ADO recordset and attach it to the form or control).
I usually use linked tables for the stuff where it is fast enough, and use ADO for more advanced stuff such as searching so that I can use stored procedures, etc.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.