skip to Main Content

MyISAM racing conditions / LOCK TABLES – Phpmyadmin

My 'invoices' table: CREATE TABLE `invoices` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `invoice_id` int(11) NOT NULL, PRIMARY KEY (`id`,`invoice_id`), UNIQUE KEY `invoice_id` (`invoice_id`), KEY `order_id` (`order_id`) ) ENGINE=MyISAM AUTO_INCREMENT=115 DEFAULT CHARSET=utf8 When I try the query : mysqli_query($conn, "LOCK…

VIEW QUESTION
Back To Top
Search