| re: How to "append" a datatable?
Hi Christian,
"Christian Maier" <tomtailor@freesurf.fr> schrieb im Newsbeitrag
news:1144239093.416716.51440@g10g2000cwb.googlegro ups.com...[color=blue]
> I have huge unperformant "where like" querys to a mysql DB. So there
> are some performance issues. To resolve my performance problem I thougt
> to split the query into threads. I hold 10 connections to my database
> and each connection queries in its own thread as the following:[/color]
in my opinion you have to find out what causes this performance leak!
Is it:
- your app (the way it handles the resulting datatables, etc.)
- the query
- the database connection (drivers, network, etc.)
- the database itself (old or buggy, heavy load, etc.)
If you know what causes the leak you'll have a greater chance solving it.
If something's wrong with the query, the database, the database connection
then I don't think it makes anything faster querying it with multiple
threads.
Just ideas....
Greets,
Kurt |