From 7319fcc0d8baa5a3604491549031a844747e37ab Mon Sep 17 00:00:00 2001 From: Gert-Jan Timmer Date: Thu, 24 May 2018 12:06:54 +0200 Subject: [PATCH] Renamed build option `trace` --- README.md | 2 +- sqlite3_trace.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7b52c26..6a71218 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ This package allows additional configuration of features available within SQLite | Introspect PRAGMAS | sqlite_introspect | This option adds some extra PRAGMA statements. | | JSON SQL Functions | sqlite_json | When this option is defined in the amalgamation, the JSON SQL functions are added to the build automatically | | Secure Delete | sqlite_secure_delete | This compile-time option changes the default setting of the secure_delete pragma.

When this option is not used, secure_delete defaults to off. When this option is present, secure_delete defaults to on.

The secure_delete setting causes deleted content to be overwritten with zeros. There is a small performance penalty since additional I/O must occur.

On the other hand, secure_delete can prevent fragments of sensitive information from lingering in unused parts of the database file after it has been deleted. See the documentation on the secure_delete pragma for additional information | -| Tracing / Debug | trace | Activate trace functions | +| Tracing / Debug | sqlite_trace | Activate trace functions | # FAQ diff --git a/sqlite3_trace.go b/sqlite3_trace.go index 8f90a56..999ba78 100644 --- a/sqlite3_trace.go +++ b/sqlite3_trace.go @@ -2,7 +2,7 @@ // // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. -// +build trace +// +build sqlite_trace trace package sqlite3