summaryrefslogtreecommitdiff
path: root/ext/sqlite/php_sqlite.h
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2003-04-17 16:57:46 +0000
committerWez Furlong <wez@php.net>2003-04-17 16:57:46 +0000
commit4eba9b8b467b776ff6c9f11d680ed0907d046066 (patch)
tree8e128d207d51ca00b4e57c761a4fb3ec0742ab99 /ext/sqlite/php_sqlite.h
parent3fbb4dbdc031ffefce92b57fec81b0fc94b6aaa2 (diff)
downloadphp-git-4eba9b8b467b776ff6c9f11d680ed0907d046066.tar.gz
Implement sqlite_busy_timeout() which sets the retry timeout (in milliseconds)
when multiple processes attempt to lock and update the database.
Diffstat (limited to 'ext/sqlite/php_sqlite.h')
-rw-r--r--ext/sqlite/php_sqlite.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/sqlite/php_sqlite.h b/ext/sqlite/php_sqlite.h
index 206e20c7a2..40f72902a8 100644
--- a/ext/sqlite/php_sqlite.h
+++ b/ext/sqlite/php_sqlite.h
@@ -58,6 +58,8 @@ PHP_FUNCTION(sqlite_last_insert_rowid);
PHP_FUNCTION(sqlite_escape_string);
+PHP_FUNCTION(sqlite_busy_timeout);
+
#ifdef ZTS
#define SQLITE_G(v) TSRMG(sqlite_globals_id, zend_sqlite_globals *, v)
#else