|
|
@@ -0,0 +1,69 @@
|
|
|
+//
|
|
|
+// Config.h
|
|
|
+//
|
|
|
+// $Id: //poco/Main/Data/SQLite/include/Poco/Data/SQLite/Config.h#3 $
|
|
|
+//
|
|
|
+// Library: SQLite
|
|
|
+// Package: SQLite
|
|
|
+// Module: SQLite
|
|
|
+//
|
|
|
+// Basic configuration definitions for the underlying SQLite library.
|
|
|
+// In order for configuration definitions to take effect, this file must
|
|
|
+// be included from sqlite3.c file.
|
|
|
+//
|
|
|
+// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
|
|
+// and Contributors.
|
|
|
+//
|
|
|
+// Permission is hereby granted, free of charge, to any person or organization
|
|
|
+// obtaining a copy of the software and accompanying documentation covered by
|
|
|
+// this license (the "Software") to use, reproduce, display, distribute,
|
|
|
+// execute, and transmit the Software, and to prepare derivative works of the
|
|
|
+// Software, and to permit third-parties to whom the Software is furnished to
|
|
|
+// do so, all subject to the following:
|
|
|
+//
|
|
|
+// The copyright notices in the Software and this entire statement, including
|
|
|
+// the above license grant, this restriction and the following disclaimer,
|
|
|
+// must be included in all copies of the Software, in whole or in part, and
|
|
|
+// all derivative works of the Software, unless such copies or derivative
|
|
|
+// works are solely in the form of machine-executable object code generated by
|
|
|
+// a source language processor.
|
|
|
+//
|
|
|
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
+// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
+// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
|
|
|
+// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
|
|
+// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
|
|
+// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
+// DEALINGS IN THE SOFTWARE.
|
|
|
+//
|
|
|
+
|
|
|
+
|
|
|
+#ifndef SQLite_Config_INCLUDED
|
|
|
+#define SQLite_Config_INCLUDED
|
|
|
+
|
|
|
+
|
|
|
+#include "Poco/Config.h"
|
|
|
+
|
|
|
+
|
|
|
+//
|
|
|
+// Thread safety mode defaults to "serialized".
|
|
|
+// See http://www.sqlite.org/threadsafe.html for details.
|
|
|
+// Threading mode may significantly affect performance
|
|
|
+// (see TestSuite::benchmarkThreadModesTiming)
|
|
|
+//
|
|
|
+#ifndef SQLITE_THREADSAFE
|
|
|
+ #define SQLITE_THREADSAFE 1
|
|
|
+#endif // SQLITE_THREADSAFE
|
|
|
+
|
|
|
+
|
|
|
+#ifdef POCO_DATA_SQLITE_FTS
|
|
|
+ #ifndef SQLITE_ENABLE_FTS3
|
|
|
+ #define SQLITE_ENABLE_FTS3
|
|
|
+ #endif
|
|
|
+ #ifndef SQLITE_ENABLE_FTS3_PARENTHESIS
|
|
|
+ #define SQLITE_ENABLE_FTS3_PARENTHESIS
|
|
|
+ #endif
|
|
|
+#endif // POCO_DATA_SQLITE_FTS
|
|
|
+
|
|
|
+
|
|
|
+#endif // SQLite_SQLite_INCLUDED
|