lock mysql table
Posted: Sun 13 Feb 2005 11:44
I have execute an sql statement to lock table `parameter`.
lock tables parameter read;
I try to update this table records example :
update parameter set vers='1.35';
System seems hang. It only able to function after I unlock the tables.
lock tables parameter read;
I try to update this table records example :
update parameter set vers='1.35';
System seems hang. It only able to function after I unlock the tables.