|
int sqlite3_sleep(int);
This function causes the current thread to suspend execution a number of milliseconds specified in its parameter.
If the operating system does not support sleep requests with millisecond time resolution, then the time will be rounded up to the nearest second. The number of milliseconds of sleep actually requested from the operating system is returned.
SQLite implements this interface by calling the xSleep() method of the default sqlite3_vfs object.
See also lists of Objects, Constants, and Functions.