-
Notifications
You must be signed in to change notification settings - Fork 0
Usage
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^