Dowloading new build 2.10.74

Discussion of open issues, suggestions and bugs regarding database management and administration tools for MySQL
Post Reply
rowy
Posts: 1
Joined: Wed 08 Aug 2007 13:27

Dowloading new build 2.10.74

Post by rowy » Wed 28 Nov 2007 09:12

Hi,

two questions:
1. from where I can download the actual build?


2. If I run a select sql against a large table I have following problem:
- the result displays but the tread locks the table with "writing to net"
Why the table will be locked for a select?

thanks for feedback and best regards
Rolf

Duke
Devart Team
Posts: 476
Joined: Fri 29 Oct 2004 09:25

Post by Duke » Wed 28 Nov 2007 09:51

1. If you are registered user, you can download actual build from the same link as you did it first time.

2. In MyDeveloper we use delayed fetching technique. This means that large table in not actually fetched to client side until user wants to go to the last record. This saves network traffic. The tradeoff is that server "waits" for client to pull data out of socket (as you can see it). To avoid this use paginal mode when accessing large tables.

Post Reply