Pavol Biely

Results 2 issues of Pavol Biely

A new `inTransaction()` method might be a very useful shortcut. Calling is unnecessary long right now. ```php /* @var \Nette\Database\Connection $db */ if ($db->getPdo()->inTransaction()) { $db->rollBack(); } ``` Why not...

**Motivation** I want to force script updates with my own extension in Violentmonkey. **Proposed Solution** Implement [runtime.onMessageExternal](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/runtime/onMessageExternal) event which will listen to calls which would force scripts updates. Add new...

enhancement