D
David Abdala
Guest
I'm not sure about what are you actually asking. If the question is actually about copying table structure: you can't change a static table structure. If the question is about copying table content: topBuff = ds:get-buffer(1). create query hquery. hquery:query-prepare('for each ' + topBuff:table-name). hquery:query-open(). do while hquery:get-next(): create tt_buf. buffer tt_buf:Handlef:BUFFER-COPY(topBuff,' '). end. Look the docs for buffer-copy, it has parameters and I never remembers if it receives source, or destination, buffer.
Continue reading...
Continue reading...