diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-11-07 15:00:06 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-11-07 15:00:06 +0200 |
commit | bcf5fce175953bec0fd2725968828850a74d8539 (patch) | |
tree | 74388e8f50f893d53cf748a34b601c96557d0228 /odb/tracer.hxx | |
parent | 02e8d8116c01594716323fc6e03ede7094699d5c (diff) |
Add support for SQL statement tracing
Diffstat (limited to 'odb/tracer.hxx')
-rw-r--r-- | odb/tracer.hxx | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/odb/tracer.hxx b/odb/tracer.hxx new file mode 100644 index 0000000..9a8ec88 --- /dev/null +++ b/odb/tracer.hxx @@ -0,0 +1,38 @@ +// file : odb/tracer.hxx +// author : Boris Kolpackov <boris@codesynthesis.com> +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef ODB_TRACER_HXX +#define ODB_TRACER_HXX + +#include <odb/pre.hxx> + +#include <odb/forward.hxx> +#include <odb/details/export.hxx> + +namespace odb +{ + class LIBODB_EXPORT tracer + { + public: + virtual + ~tracer (); + + virtual void + prepare (connection&, const statement&); + + virtual void + execute (connection&, const statement&); + + virtual void + execute (connection&, const char* statement) = 0; + + virtual void + deallocate (connection&, const statement&); + }; +} + +#include <odb/post.hxx> + +#endif // ODB_TRACER_HXX |