odbc: fix odbc-get-row-fields by using iota on the number of columns

char-rename
Alexander Iljin 2016-10-30 23:51:49 +03:00 committed by John Benediktsson
parent f72f116364
commit f466d290ba
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ C: <field> field
: odbc-get-row-fields ( statement -- seq )
[
dup odbc-number-of-columns [
dup odbc-number-of-columns iota [
1 + odbc-get-field value>> ,
] with each
] { } make ;