F
F
FollHaus2020-12-11 15:13:56
excel
FollHaus, 2020-12-11 15:13:56

Where to find Excel ParserXg statistics?

5fd3626208201694631870.png
I'm looking for such a parser xg statistics.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Artemy, 2016-12-24
@MetaAbstract

Note
Locking of rows for update using SELECT FOR UPDATE only applies when autocommit is disabled (either by beginning transaction with START TRANSACTION or by setting autocommit to 0. If autocommit is enabled, the rows matching the specification are not locked.
Locking of rows for update using SELECT FOR UPDATE...

S
Sasha, 2019-12-25
@uxoos

mysql_query("SET autocommit = 0");
$result = mysql_query("SELECT * FROM table WHERE locked = 0 LIMIT 1 FOR UPDATE");
$row = mysql_fetch_assoc($result);
mysql_query("UPDATE table SET locked = 1 WHERE id = 1;");
mysql_query("COMMIT");

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question