Post() --> hang

Discussion of open issues, suggestions and bugs regarding MyDAC (Data Access Components for MySQL) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
drdwilcox
Posts: 4
Joined: Fri 22 Apr 2005 15:51
Location: Glendale, AZ

Post() --> hang

Post by drdwilcox » Wed 04 May 2005 18:32

I have encountered a problem that I cannot track any further. I have a form connected to a TMyTable. When I execute a Post() on the table, my program hangs. The table gets updated, but the call to Post() never returns. In the same application, I have another form attached to a different table, and here everything works as expected.

I wish I had more information, but that is all I've got.

Thanks,

Don

Ikar
Posts: 1693
Joined: Thu 28 Oct 2004 13:56

Post by Ikar » Thu 05 May 2005 07:07

Do you use FetchAll = False?

If yes, then the problem occurs because of locking MyISAM tables. If you try to update underfetched table MySQL waits while it will be completely fetched. Please refer to MySQL Reference manual 5.3 Locking Issues for details. To avoid the problem you can use any of following solutions.
- set FetchAll to True;
- change type of the table into, for example, InnoDB.

Post Reply