PHP 8.5.0 Beta 1 available for testing

Voting

: four minus one?
(Example: nine)

The Note You're Voting On

anthony at domps dot fr
4 years ago
It's possible to use PRAGMA to set busyTimeout (milliseconds) :

<?php

$db
= new SQLite3('my.db');
$db->exec("PRAGMA busy_timeout=5000");

?>

<< Back to user notes page

To Top