ok, it worker better, there is still something wrong when accessing photo through the virtual table.

I ried to create a catalog view section and no picture was displayed.

virtual table creation script
myconnstr='DRIVER=Lianja;SERVER=10.231.92.232;DATA BASE=southwind;Uid=?;Pwd=?;'
open database odbcdemo
create virtualtable employees connstr myconnstr as select * from employees
close database

I then ran the same script on employees in southwind and employees on odbcdemo. "Photo" column for virtual table appears empty ... ODBC bug ?
open database southwind
select len(firstname), len(etos(photo)) from employees
close database

open database odbcdemo
select len(firstname), len(etos(photo)) from employees
close database

EXPR0001 EXPR0002

10 3
10 3
10 3
10 3
10 3
10 3
10 3
10 3
10 3
9 records selected in 0ms
EXPR0001 EXPR0002

10 0
10 0
10 0
10 0
10 0
10 0
10 0
10 0
10 0
9 records selected in 0ms

Regards