This file is a header-only library, whose sole dependencies should be standard STL and posix threading libraries. You can extract this file out of the "glim" library to include it separately in your project.
Copyright 2006 Kozarezov Artem Aleksandrovich <artem@bizlink.ru> Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
#include <stdexcept>
#include <sqlite3.h>
#include <pthread.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <errno.h>
#include <stdint.h>
Go to the source code of this file.
Namespaces | |
| namespace | glim |
Classes | |
| class | glim::Sqlite |
| The database. More... | |
| class | glim::SqliteSession |
| A single thread session with Sqlite. More... | |
| class | glim::SqliteQuery |
| Wraps the sqlite3_stmt; will prepare it, bind values, query and finalize. More... | |
| class | glim::SqliteParQuery |
| Version of SqliteQuery suitable for using SQLite in parallel with other processes. More... | |
1.4.6