diff options
Diffstat (limited to 'tracecallback_noimpl.go')
-rw-r--r-- | tracecallback_noimpl.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tracecallback_noimpl.go b/tracecallback_noimpl.go index f270415..09b55d0 100644 --- a/tracecallback_noimpl.go +++ b/tracecallback_noimpl.go @@ -4,7 +4,20 @@ package sqlite3 import "errors" +// Trace... constants identify the possible events causing callback invocation. +// Values are same as the corresponding SQLite Trace Event Codes. +const ( + TraceStmt = uint32(0x01) + TraceProfile = uint32(0x02) + TraceRow = uint32(0x04) + TraceClose = uint32(0x08) +) + // RegisterAggregator register the aggregator. func (c *SQLiteConn) RegisterAggregator(name string, impl interface{}, pure bool) error { return errors.New("This feature is not implemented") } + +func (c *SQLiteConn) SetTrace(requested *TraceConfig) error { + return errors.New("This feature is not implemented") +} |