Subject Re: Please. A solution with TRANSACTIONS for this problem
Author Aage Johansen
You wrote:
> ...
> I wan't to do a program that stores in a table all the words of a
> document and the number of ocurrences of each word.
> ...

Start with a table with just one column: NAME. Insert all words into the
table. When you're finished do a
select NAME, count(*)
from TheTable
group by NAME
You will now a result set that you can show in the grid (and you can insert
directly into you TEST table).

Sorry, nothing about transactions. But I think it solves the speed problem.


Regards,
Aage J.