Subject | Re: Please. A solution with TRANSACTIONS for this problem |
---|---|
Author | Aage Johansen |
Post date | 2002-02-01T20:38:03Z |
You wrote:
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.
> ...Start with a table with just one column: NAME. Insert all words into the
> 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.
> ...
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.