I am using the handler to quickly acess information off an MyISAM table.
HANDLER OPEN Test_Table;
HANDLER Test_Table READ Test_Index=('1');
HANDLER Test_Table CLOSE;
I want that MySQL isn't closing the table between commands. What does HANDLER ... CLOSE; do? Is it safe to ommit it from this operation?
-- This message may have been cut off and the rest will only be shown to members. To become a member, click here --