-1

I have sqlite3 version 3.15.2 on a Windows 10 home laptop. What I need/want is the same thing, but with the pragma secure_delete set to true so it applies to every database I use, but I can't compile sqlite3. Secure_delete just writes 0s into the database memory when a tuple is deleted. Is there some way I can set some environment variable or other trick to accomplish this?

Marichyasana
  • 2,966
  • 1
  • 19
  • 20

1 Answers1

0

The only ways to enable this setting are to set the SQLITE_SECURE_DELETE compilation option, or to execute the secure_delete PRAGMA for each new database connection.

So what you want is not possible.

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