You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dsibiryakov edited this page Apr 4, 2020
·
2 revisions
This provider recognizes connection strings in form 'odbc://<DSN name>'.
Example script:
execute block returns (id varchar(20), n decimal(15,3)) as
begin
for execute statement
'select id, n from test_table'
on external 'odbc://dBase'
into :id, :n DO
suspend;
end^