i would like to have metadata ( field description of a request) from a
connection made with rebol/command on a ODBC database.
how can i can get this informations ?
i know that ODBC return this metadata information from a resultset.
in rebol/command i do like that :
db: open ODBC://MyServerDatabase
stm: firts db
insert stm {select * from mytable}
resulset: copy stm
metadate: ?????????
thanks for your help !!!
i know this possibility. but :
1 i don't want to parse the user request to have columns name
2 it can be difficult to retreive columns name if the request is like
this one:
{Select * from table1 join table2 on table1.key = table2.key}
i would like to know if somewhere in my STM word! i can find metadata
of the request !!!!