0

Is there any api within SQLite which would return the current size of the WAL journal file? I need to check for its size periodically and perform some actions if it exceeds a certain limit. I am currently using system calls like stat() from my c++ program to achieve this, but just wondering if any inbuilt platform-independent method is available.

Obli07vion
  • 93
  • 1
  • 3

1 Answers1

0

No; the -wal file is not visible as far as the database API is concerned.

CL.
  • 173,858
  • 17
  • 217
  • 259