You can access remote databases readonly without the need to setup a VirtualTable definition.
Code:
use sales.customers connstr "lianja_mssqltest"
list first 25
also...
Code:
use sales.customers connstr "lianja_mssqltest" where condition
list first 25
and...
Code:
use sales.customers connstr "lianja_mssqltest" as select * from sales.customers where condition order by column
list first 25
Once you have these "local cursors" you can join disparate databases as Lianja will build the required join indexes dynamically for you.
So, you can dynamically fetch data from remote databases with very little effort. If you need to update data you will need to setup a VirtualTable definition that describes the primary key and other pertinent information such as updatefldlist etc.
Here is an example.
Bookmarks